它只是把戲,但工作很好@ myside。 有1個輸入文本,你可以從數據庫中獲取它的價值也..你的選擇。我有一個函數,將重定向到谷歌..這將在谷歌搜索你已經輸入文字輸入.. 如果你想,那麼你可以追加更多的字符串,因爲你想添加它的類別(新聞紙)
代碼:
<input type="text" name="search" id="search" style="width:400px;"/>
<input type="button" name="searchBtn" id="searchBtn" value="Search" onclick="searchLink()"/>
<script language="javascript" type="text/javascript">
function searchLink()
{
var link1 = document.getElementById("search").value;
window.location.href = 'https://www.google.co.in/#q='+link1;
}
</script>
例子:
類型的Facebook「輸入,如果你想添加更多的像 '登陸' 細節會重定向與Facebook串谷歌.. 隨着 「Facebook的」,那麼你可以嘗試像
function searchLink()
{
var link1 = document.getElementById("search").value;
link1 = link1.replace(/ /g,"+")+"+login";
window.location.href = 'https://www.google.co.in/#q='+link1;
}
希望這是對你的查詢正確的方法..
編輯
從DB值從Favrt體育&你可以,如果用戶隱藏此一定不要看到它..
<input type="text" name="search" id="search" value=" *here from DB* "/>
<input type="button" name="searchBtn" id="searchBtn" value="Search" onclick="searchLink()"/>
<script language="javascript" type="text/javascript">
function searchLink()
{
var link1 = document.getElementById("search").value;
// here you will get watever sport he like in variable link1
link1 = link1.replace(/ /g,"+")+"+sport";
// apend 'sport' here, you can change it according to your need
window.location.href = 'https://www.google.co.in/#q='+link1
}
</script>
你有沒有嘗試過嗎?發佈您的嘗試代碼。 –