当我打开如下链接时,我想让下一页的网址不可编辑:
<a href="javascript:window.location='http://google.co.in?test=raj'">Enter Lobby</a>
是否可以通过Javascript或PHP使window.location
参数不可编辑?
答案 0 :(得分:6)
请参阅window.open
上的this w3schools article:
window.open("http://yoururl/", "title", "location=no");
第三个参数是specs
。在那里通过location=no
。
如果您想在当前页面上禁用网址更改,抱歉,这是不可能的。