我是否可以为要在 javascript 中操作的 html 类生成选择器语句。但是,当我尝试 top.$find('.specific_class'); 时,我看到该类存在 它返回 null 这让我相信我使用了不正确的 select 语句。
问问题
67 次
2 回答
2
您可以使用以下方法测试选择器是否存在.length
- 例如:
if($(".specific_class").length){
//$(".specific_class") definitely exists, so now you can do something like:
$(".specific_class").find(function(){
//code
});
}
于 2012-12-07T16:26:17.840 回答
1
您的 JQuery 选择器格式不正确。
尝试以下操作:
$(".specific_class").find(function(){
// do your code here with this instance of the found .specific_class $(this)
// get this items ID
var id = $(this).attr("id");
});
于 2012-12-07T16:13:08.593 回答