3 回答

TA貢獻1803條經驗 獲得超6個贊
<a href="/index2.php?option=com_jumi&fileid=3&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&fileid=3&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>
添加回答
舉報