打开一个弹出窗口(包含文本)HTML链接

时间:2014-04-11 17:09:52

标签: javascript html onclick http-status-code-404 pop

以下是我的链接结构:

<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 -

我如何包含我想要的文字

2 个答案:

答案 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标记。您需要在新窗口中指定要打开的链接。