为了账号安全,请及时绑定邮箱和手机立即绑定

onclick打开窗口和特定大小

onclick打开窗口和特定大小

慕桂英4014372 2019-11-28 13:54:59
我有这样的链接:<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,')我希望新的打开窗口以特定大小打开。如何指定高度和宽度?
查看完整描述

3 回答

?
慕码人8056858

TA贡献1803条经验 获得超6个赞

<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11"

   onclick="window.open(this.href,'targetWindow',

                                   'toolbar=no,

                                    location=no,

                                    status=no,

                                    menubar=no,

                                    scrollbars=yes,

                                    resizable=yes,

                                    width=SomeSize,

                                    height=SomeSize');

 return false;">Popup link</a>

其中width和height是没有单位的像素(width = 400而不是width = 400px)。


在大多数浏览器中,如果没有设置换行符就无法编写它,那么一旦设置了变量,所有内容都在一行中:


<a href="/index2.php?option=com_jumi&amp;fileid=3&amp;Itemid=11" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=SomeSize,height=SomeSize'); return false;">Popup link</a> 


查看完整回答
反对 回复 2019-11-28
  • 3 回答
  • 0 关注
  • 878 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信