I'm learning JQuery, and I'm looking for a way to view the methods an object as associated with it after its created, much like python's dir().
问问题
8982 次
1 回答
9
这是假设您加载了 jquery,正在使用 firefox 或 chrome(用于控制台),并且有一个 document.ready 方法:
$(document).ready(function(){
console.log($('body'));
});
在控制台中,您应该看到您使用 jquery 创建的选择器对象。单击它以查看其实例数据。当您查看该选择器对象时,您将看到可用于对该选择器对象进行操作的所有 jquery 方法的列表。
您应该能够查看如下内容:
顺便说一句,您应该能够单击任何方法名称以在控制台中查看它的代码。
于 2013-02-19T02:02:39.347 回答