如何使链接点击以保持在同一页面上

时间:2017-05-07 07:55:16

标签: javascript href

我有以下代码:

<area href="/?22" shape="poly" coords="438,388,561,211">
<area href="/?23" shape="poly" coords="338,43,61,21">

点击链接后发送&#34;信号&#34;并且工作正常,但页面更改为:

http://192.168.0.177/?22 

http://192.168.0.177/?23 

我希望将页面保持为:

http://192.168.0.177

有没有办法/黑客点击链接发送信号,但页面仍然存在,当然不刷新?

非常感谢你!

2 个答案:

答案 0 :(得分:2)

如果您不需要href,请返回false onclick或使用JavaScript href:

<area href="/?22" onclick="return false" shape="poly" coords="438,388,561,211">

<area href="javascript:void(0)" shape="poly" coords="338,43,61,21">

如果您需要加载href,请使用Ajax或添加命名的iframe并将其作为目标:

<area href="/?22" target="Iframe" shape="poly" coords="438,388,561,211">

...

<iframe name="Iframe" style="display:none"></iframe>

答案 1 :(得分:1)

如何添加onclick属性如下。

<area href="/?23" shape="poly" coords="338,43,61,21" onclick="return false;">