我有一个带有onClick图片链接的页面。单击图像时,将打开一个弹出窗口。在弹出窗口中,我有另一个onClick图像链接,应该打开另一个弹出窗口,但链接不起作用。我对两个链接使用相同的代码。为什么第一个链接有效但第二个链接没有?我正在使用的代码是:
<a href="#" onclick=
"window.open(’target URL','_blank','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=700, height=2700');return(false)">
<img height="110" src="%E2%80%9Cimage" width="180"></a>
答案 0 :(得分:0)
您有’
而不是'
。变化:
window.open(’ta
为:
window.open('ta
答案 1 :(得分:0)
您应该消除resizable=0, copyhistory=0
等属性之间的空格
是resizable=0,copyhistory=0
。也把它全部放在一行。
以下是fiddle
和代码:
<a href="#" onclick = window.open("target_url","_blank","toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=0,copyhistory=0,menuBar=0,width=700,height=2700");return(false)><img height="110" src="%E2%80%9Cimage" width="180"></a>