我有一个小功能,可以根据文本值输入将一个人重定向到搜索结果页面,我在Javsacript中使用的重定向功能在IE和谷歌浏览器中工作正常,但在fireFox中不起作用。
$(document).on("click", "input[name='btnSearchTest']", function () {
//alert('test');
var txtBoxValue = $('#txtSearchGeneral').val();
if (txtBoxValue == "") {
alert("Please enter a value");
return false;
}
window.event.returnValue = false;
document.location = "SearchResults.aspx?search=" + txtBoxValue;
关于如何在firefox中使用javascript完成重定向的任何建议
问候
答案 0 :(得分:3)
试试这个
window.location.href = "SearchResults.aspx?search=" + txtBoxValue;
答案 1 :(得分:3)
使用
window.location.href = "SearchResults.aspx?search=" + txtBoxValue;