我有一个基于文本值输入的将人重定向到搜索结果页面的小功能,而我在Javsacript中使用的重定向功能在IE和Google Chrome中可以正常使用,但是在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完成重定向的任何建议
问候
最佳答案
用
window.location.href = "SearchResults.aspx?search=" + txtBoxValue;