当前位置:  开发笔记 > 编程语言 > 正文

在DOM元素上查找使用jQuery添加的回调函数

如何解决《在DOM元素上查找使用jQuery添加的回调函数》经验,为你挑选了1个好方法。

我目前正在使用带有jQuery 1.2.6的FireBug 1.3.0在Mozilla FireFox 3.0.5中进行测试.

第一次尝试

document.getElementById("x").onfocus = function ()
{
    var helloWorld = "Hello World";
};

FireBug控制台:

document.getElementById("helloworld").onfocus.toString()=函数体作为字符串

$("#helloworld").get(0).onfocus.toString()=函数体作为字符串


第二次尝试

$("#helloworld").focus(function ()
{
    var helloWorld = "Hello World";
});

FireBug控制台:

document.getElementById("helloworld").onfocus.toString()= FireBug什么都不返回

$("#helloworld").get(0).onfocus.toString()= FireBug什么都不返回


我在这里错过了什么?为什么在用jQuery附加回调时我找不到回调?



1> redsquare..:

要查看jQuery绑定使用的事件:

$("#helloworld").data('events');

如果按照示例绑定焦点,并在firebug控制台中运行上面的操作,它将返回

Object focus=Object

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有