js 在新窗口中打开URL
时间:11-05
作者:
window.open 用来打开新窗口
window.location 用来替换当前页,也就是重新定位当前页
可以用以下来个实例来测试一下。
<input type="button" value="新窗口打
window.location 用来替换当前页,也就是重新定位当前页
可以用以下来个实例来测试一下。
<input type="button" value="新窗口打
window.open 用来打开新窗口
window.location 用来替换当前页,也就是重新定位当前页
可以用以下来个实例来测试一下。
<input type="button" value="新窗口打开" onclick="window.open('http://www.google.com')">
<input type="button" value="当前页打开" onclick="window.location='http://www.google.com/'">
window.location 用来替换当前页,也就是重新定位当前页
可以用以下来个实例来测试一下。
<input type="button" value="新窗口打开" onclick="window.open('http://www.google.com')">
<input type="button" value="当前页打开" onclick="window.location='http://www.google.com/'">