有没有办法知道页面上所有对象的ID和名称?任何工具?
使用jQuery(+ FireBug for console.log
):
var ids = [], names = []; jQuery('body *').each(function(){ var id = $(this).attr('id'), name = $(this).attr('name'); id && ids.push(id); name && names.push(name); }); console.log(ids, names);