1

我正在做一个网站。当您单击我的搜索框并键入时,您单击搜索,然后它会将您带到带有搜索结果的 google.com,当您键入时,我将如何使用 ajax 在框架中显示结果?当您在http://google 上搜索时。 com您键入的文本会自行显示结果,而无需按搜索,我该怎么做?这是我的html片段

<div class='search'>
<form method="get" id='search' action="http://www.google.com/search">
<input type="hidden" name="q" size="31" maxlength="255" value="Site Name:" />
<input type="text" name="q" size="31" maxlength="255" style="height: 24px;" placeholder="Search..." />
</div>

我在它后面有很多 css 来使文本框放大和改变颜色。这是片段以防万一。

#search input[type="text"] {
background: url(imgs/search-white.png) no-repeat 10px 6px #444;
border: 0 none;
font: bold 12px Arial,Helvetica,Sans-serif;
color: #d7d7d7;
width:150px;
padding: 6px 15px 6px 35px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); 
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2)   inset;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
-webkit-transition: all 0.7s ease 0s;
-moz-transition: all 0.7s ease 0s;
-o-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
outline: none;
}

#search input[type="text"]:focus {
background: url(imgs/search-dark.png) no-repeat 10px 6px #fcfcfc;
color: #6a6f75;
width: 175px;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
outline: none;
}
div.search
{
position:fixed;
top:8px;
right:5px;
}

那么我将如何制作一个在您键入时显示谷歌搜索结果的 ajax 框架?我对ajax一无所知我不知道如何用它开始一行代码所以请深入解释

*旁注对不起,如果网站看起来不好,我 13

4

3 回答 3

1

在不了解 JavaScript 的情况下,您会被卡住,我建议您先学习它。w3schools.com将是一个好地方。

Google 不再允许您通过 iframe 使用他们的网站,因此我建议使用 startpage.com,因为他们的结果来自 google.com

我能想到的最简单的方法是这样的(在这个例子中,我使用网站的移动版本,因为它嵌入得更好。):http: //jsfiddle.net/A8M4r/

<!DOCTYPE html>
<html>
<head>
<script>
function querify(query) {
    return query.split(" ").join("+") // replaces spaces with +s for url
}
function updateIframe(query) {
    query = querify(query);
    var i = document.getElementById("searchResults");
    var searchEngine = "http://startpage.com/do/m/mobilesearch/?q=" 
    var yourSiteToSearch= "site:example.com+"
    i.src = searchEngine + yourSiteToSearch + query;
}
</script>
</head>
<body>
   <input oninput="updateIframe(this.value)" type="text">
   <iframe id="searchResults" height="100%" width="100%">
</body>

希望这可以帮助!

PS如果你想要一个只有当用户点击搜索框时才会弹出iframe的版本,这里有一个:jsfiddle.net/4EDUK

于 2013-02-10T04:02:30.207 回答
0
$(window).load(function()
{
    var opts = 
    {
       url: "http://www.google.com/search?q=" + $("#mysearchInput").val(),
       success: function(data)
       {
           //parse the results which are in variable "data". 
           //You're going to need to analyze the results yourself
           //and parse it yourself, in whatever way you want to

           var myresults = "my example results here";
           $("#myiframe").append(myresults);
       }
    }

    $.ajax(opts);
});
于 2013-02-10T01:47:05.083 回答
0

如果您想在 jQuery 中自定义自动完成功能,您可以使用jQuery Autocomplete之类的功能,您必须使用数组或远程文件定义自动完成值。

否则,Google 自定义搜索使您能够通过带有 Google 提供的属性参数的搜索框使用自动完成功能。这是一个可以帮助您的网页 - http://www.theblog.ca/autocomplete-google-custom-search-input-field

于 2013-02-10T04:13:51.697 回答