我想使用 javascript 重定向到一个 aspx 页面,但是在尝试这个时我收到以下错误
uncaught type error. Property 'location'of object[object global] is not a function
我如何使用 javascript 重定向到 aspx 页面
function SearchContent() {
var txtBoxValue = $('#txtSearch').val();
if (txtBoxValue == "") {
alert("Please enter a value");
return false;
}
window.location("SearchResults?search="+txtBoxValue);