jQuery通过具有类后缀的元素循环
我在joomla 3.0网站中有一个名为fadecontent
的类后缀,我必须使用$ .each()函数循环所有具有此类后缀的div。
我尝试过,但它似乎不适用于类后缀 。 joomla文档:类后缀
$('.fadecontent').each(function(i, obj) {
与类后缀我的意思是这样的:
<div class="class classSuffix">exemple</div>
<!--example in my code-->
<div class="moduletable fadecontent">content</div>
如何实现这一点?
编辑:脚本在<HEAD>
标记中
我不确定我是否明白你的意思是课后缀。 在你的例子中
<div class="moduletable fadecontent">content</div>
该div具有类模块表和不满足。 所以这应该循环遍历所有的类fadecontent的div
$('.fadecontent').each(function() { console.log('Do Something here'); });
如果这没有达到你要找的东西,你可以发布更多的代码,以便我们可以看到任何其他错误?
如果你使用JQuery的特殊选择器,例如:
$('[class$="yoursuffix"]')
它应该返回其类包含后缀模式的元素。 你可以在这里阅读更多
链接地址: http://www.djcxy.com/p/83515.html上一篇: jQuery loop through elements with class suffix
下一篇: jQuery to loop through dynamically created elements with the same class