<script type="text/javascript">window.open('timepop.php','window',width=400,height=200,left=0,top=100,screenX=0,screenY=100')</script>
当我将其作为javascript:window.open('timepop.php','window',width=400,height=200,left=0,top=100,screenX=0,screenY=100')
放入浏览器时,它可以正常工作,但当放入实时页面时,它不会。
答案 0 :(得分:4)
window
可能不是弹出窗口的好名称,它可能与全局window
对象冲突(不确定)
您在第三个参数
检查窗口是否被弹出窗口阻止程序捕获。
答案 1 :(得分:1)
你缺少引用起始引用:
<script type="text/javascript">window.open('timepop.php','window',width=400,height=200,left=0,top=100,screenX=0,screenY=100')</script>
================^
试试这个:
<script type="text/javascript">window.open('timepop.php','window','width=400,height=200,left=0,top=100,screenX=0,screenY=100')</script>