我是靠谱客的博主 无辜秀发,最近开发中收集的这篇文章主要介绍如何同时传event以及其他参数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

有时方法需要同时传递event防止冒泡和其他参数,因此可以将方法进行封装。

function x(e,str){
var a=e||window.event;
if(a.stopPropagation){
a.stopPropagation();
}else{
a.cancelBubble=true;
}
alert(str);
}
window.onload=function(){
document.getElementById('span').onclick=function(e){
x(e,'mm');
}
}

或者一种更简单的

function x(e){
var a=e||window.event;
if(a.stopPropagation){
a.stopPropagation();
}else{
a.cancelBubble=true;
}
}
window.onload=function(){
document.getElementById('span').onclick=function(e,str){
x(e);
alert(str);
}
}

欢迎访问个人博客:cheeseyu.cn

最后

以上就是无辜秀发为你收集整理的如何同时传event以及其他参数的全部内容,希望文章能够帮你解决如何同时传event以及其他参数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部