我有一个用jQuery编写的Google Instant样式搜索脚本。当用户查询时,# SEARCHTERM 会添加到我的网页网址中。我想知道如何将用户查询添加到我的页面标题中,因此它将是“ SEARCHTERM - 我的搜索脚本”
这是我目前的代码:
$(document).ready(function(){
$("#search").keyup(function(){
var search=$(this).val();
var keyword=encodeURIComponent(search);
var yt_url='search.php?q='+keyword+'&category=web';
window.location.hash=keyword;
$.ajax({
type:"GET",
url:yt_url,
dataType:"html",
success:function(response){
$("#result").html(response);
}
});
});
});
答案 0 :(得分:1)
使用:document.title
document.title = $(this).val() + " - My Search Script";