如果我有一页带有生成(唯一)ID 的 iFrame 对象页面,如果它们 .haveClass('specific_class'),我是否可以返回这些 id... 例如:我想用一个特定类并返回他们的唯一 ID 我将如何去做?
我认为我在滥用 jquery 的选择器,因为它在我的 if 语句中没有达到 true。//我已经尝试了几次迭代来找出选择器,但我仍然有点困惑。
if($(document).hasClass('specific_class'))
{
alert("You found a iframe with this class");
//return the iframe with this class's id
}
感谢任何帮助,因为我对 Jscript 很陌生 - 作为旁注,我正在使用 ASP.net 执行此操作,所以我不确定这是否是问题的一部分。
谢谢,米奇