在我的网站上自动搜索Google搜索结果

时间:2013-02-10 01:42:17

标签: javascript html ajax jquery

我正在制作website。当您单击我的搜索框并键入您单击搜索,然后它将带您到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

3 个答案:

答案 0 :(得分: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>

希望这有帮助!

P.S。如果你想在用户点击搜索框时只弹出iframe,那么就有一个:jsfiddle.net/4EDUK

答案 1 :(得分: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);
});

答案 2 :(得分:0)

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

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