单击按钮时,我需要重定向到新位置。我使用过location.href=newloactionname.aspx
但它没有移动到新位置。我的代码是:
function OpenUser(userID) {
location.href = 'UserRegistration.aspx?userID=' + userID;
alert(location.href)//shows only previous location
}
答案 0 :(得分:0)
你可以尝试:
window.location = 'UserRegistration.aspx?userID=' + userID;
,而不是...
答案 1 :(得分:0)
如果您有任何javasript错误,请先查看。也许您的代码不会调用OpenUser函数。
也试试这个:
//链接点击 window.location.href =" https://stackoverflow.com/&#34 ;;
OR
// HTTP重定向 window.location.replace(" https://stackoverflow.com/&#34);
我几乎可以肯定你在某个地方有一个JS错误。在浏览器中按F12。 对该功能发出警报。查看警报是否出现。