我不太确定我是不是在正确的范围内使用它或者是什么,但是我有一个脚本基本上捕获链接点击并导致页面在转到链接页面之前淡出。但是,如果链接是JavaScript onclick ,则脚本将失败。
这是我的代码:
<script type="text/javascript">
pageObj = {
init: function(){
$("body").fadeTo("slow", 1);
},
redirectPage: function(redirect){
window.location = redirect;
},
linkLoad: function(location){
$("body").fadeOut(1000, this.redirectPage(location));
}
};
$(document).ready(function() {
pageObj.init();
$("a").click(function(e){
e.preventDefault();
if (this.attr('onclick') !== undefined) {
eval(this.attr('onclick').val());
} else {
var location = this.href;
pageObj.linkLoad(location);
}
});
});
</script>
如您所见,我正在尝试检查链接是否具有 onclick 属性,然后调用 onclick 函数(如果存在)。我怎样才能做到这一点?
答案 0 :(得分:80)
使用:$(this).attr
代替this.attr
这迫使它进入jQuery的上下文。
答案 1 :(得分:5)
虽然Diodeus是正确的,你需要在使用this
之前将attr()
包装在jQuery集合中(它是jQuery集合的方法,而不是HTMLElement
),你可以也可以跳过attr()
。
$("a").click(function(e){
var location;
e.preventDefault();
if ($.isFunction(this.onclick)) {
this.onclick.call(this, e);
} else {
location = this.href;
pageObj.linkLoad(location);
}
});
请注意,我使用了该属性(当加载HTML文档时,属性通常被预加载到属性中,on_______
属性被预加载为方法。另请注意,我使用this.onclick.call()
而不是{{1为eval()
方法设置正确的this
,并确保将事件对象作为参数进行访问。