LinkButton.Attributes["onclick"] = "xxx"
onclick是客户端事件,只能引起客户端事件。
最近在学习vue基础,想给a添加一个点击事件,没有注意到a的href设为了空,导致页面一直在刷新,点击事件根本就没有进去
后来知道a标签的href会导致默认人的页面跳转事件,如果为空值,就会刷新页面。
因为这个小的问题,就重新看了一下给a绑定点击事件注意的小地方,记录一下
1.链接的 onclick 事件被先执行,其次是 href 属性下的动作(页面跳转,或 javascript 伪链接);
2.如果在链接的 href 属性中调用一个有返回值的函数,当前页面的内容将被此函数的返回值代替;
3.假设链接中同时存在 href 与 onclick,如果想让 href 属性下的动作不执行,我们需要阻止默认行为,
插入html代码后要重新绑定事件近日工作当中,需要对由jquery动态生成的标签添加一些事件效果。
最初的做法是在页面载入时调用事件监听如下:
Js代码
1.$(document).ready(function(){
2. $("a.keyWord1").hover( 3.function(){ 4. $(this).css("text-decoration","underline") 5. $(this).css("color","#fc9b3f") 6.},
7.function(){ 8.$(this).css("text-decoration","none") 9.$(this).css("color","") 10.}
11.)
12.})
$(document).ready(function(){
$("a.keyWord1").hover(
function(){
$(this).css("text-decoration","underline")
$(this).css("color","#fc9b3f")
},
function(){
$(this).css("text-decoration","none")
$(this).css("color","")
}
)
})本意是,当鼠标移动到a标签时触发hover效果。但是最终一点发应也没有,当然以上的代码没有问题,我在其它地方是可以使用的。
后来对比了其它地方用到这段代码的标签,发现我当前的a标签是通过jquery动态生成的,而不是后台生成的,所以思考可能是由于jquery在页面加载绑定事件时,由于我的后来动态生成的a标签还不存在,所以事件绑定自然就不成立!当然一点反应也没有!
找到问题,就开始找解决方案:
方案如下(不是很完美)
在动态生成标签后,添加如下代码:
Js代码
1.$("a.keyWord1").bind("mouseover",function(){
2. $(this).css("text-decoration","underline") 3. $(this).css("color","#fc9b3f") 4.
5. })
6.$("a.keyWord1").bind("mouseout",function(event){ 7.//阻止事件冒泡 8. event.stopPropagation()
9. $(this).css("text-decoration","none") 10. $(this).css("color","#06F") 11.$(this).unbind() 12. })
$("a.keyWord1").bind("mouseover",function(){
$(this).css("text-decoration","underline")
$(this).css("color","#fc9b3f")
})
$("a.keyWord1").bind("mouseout",function(event){
//阻止事件冒泡
event.stopPropagation()
$(this).css("text-decoration","none")
$(this).css("color","#06F")
$(this).unbind()
})
上面的代码意思是,对a标签,且class=keyWord1的标签进行事件的绑定!
这样就达到我的目的!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)