javascript喜欢:
<script type="text/javascript">
if(!alert("msg here ")) document.location = 'http://google.com';
</script>
这个脚本只在同一个标签或窗口中转到谷歌,我想打开一个窗口,然后去google.com。 感谢。
答案 0 :(得分:0)
不友好的方式:
<script type="text/javascript">
if(!alert("msg here")) window.open("http://google.com");
</script>
更友好的方式:
<script type="text/javascript">
if(confirm("Do you wish to go to google?")) window.open("http://google.com");
</script>