作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上....我正在使用这段代码
var editorLinks;
editorLinks = $(".admin_editor_link.html");
$.each(editorLinks, function(i, link){
$(link).html($(link).attr("data-loadedtext"));
});
我想知道是否有一些方法可以在没有 $.each 调用的情况下做到这一点...比如...
editorLinks.html($(this).attr("data-loadedtext"));
我以为这会起作用(或者我不记得它的一些变体)但是当我尝试它时,所有元素 html 都设置为数组中第一个元素的数据加载文本。
最佳答案
使用提供给 html()
的函数:
editorLinks.html(function(){
return $(this).attr("data-loadedtext");
});
函数的返回值用作html()
每个元素的值。
在评论中使用您的示例 HTML:
关于javascript - 有没有办法在一次调用中修改每个 jquery 对象的特定属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28479957/
我是一名优秀的程序员,十分优秀!