浅谈jQuery双事件多重加载的问题
如下所示:
<html> <a href="1**.html"> <button onclick="buttonEvent()">点击事件</button> </a> </html>
function buttonEvent(){ location.href = "2**.html"; }
如代码显示那样,当点击button按钮的时候想跳转到2**.html页面。但是,这个最终执行的结果是,先跳转到2**.html页面,然后再跳转到1**.html页面,最终显示的结果是1**.html页面中的内容。
那么,在function中加入下面的代码才可以达到上面的目的。
function buttonEvent(e){ e = e || window.event; e.stopPropagation(); e.preventDefault(); location.href = "2**.html"; }
相关推荐
delmarks 2020-05-17
84483065 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
tztzyzyz 2020-07-05
delmarks 2020-06-28
89510194 2020-06-27
牵手白首 2020-06-14
tztzyzyz 2020-05-31
81463166 2020-05-17
88570299 2020-05-17
donghongbz 2020-05-15
tztzyzyz 2020-05-15
<table id="table" class="table table-striped table-bordered table-hover table-nowrap" width="100%&qu
牵手白首 2020-05-14
Chriswang 2020-04-30
83510998 2020-05-03