以下是我的链接结构:
<a href="My texte" title="Ouverture d'une nouvelle fenêtre popup"
onclick="window.open(this.href,'nom_Popup','height=400 , width=400 ,location=no ,resizable=yes ,scrollbars=yes');return false;">+</a></div>
当我点击+时,我弹出一个包含:
HTTP Status 404 -
我如何包含我想要的文字
答案 0 :(得分:3)
将内容放在另一个html
页面中,并在<a>
s href
属性中指定其路径...
喜欢
<a href="index.html" title="Ouverture d'une nouvelle fenêtre popup"
onclick="window.open(this.href,'nom_Popup','height=400 , width=400 ,location=no ,resizable=yes ,scrollbars=yes');return false;">+</a></div>
答案 1 :(得分:0)
this.href表示您点击的锚点的href标记。您需要在新窗口中指定要打开的链接。