Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我仍然对这个问题感到困惑,但我认为这就是你想要的。imgsrc 属性可以从 CMS 更改,但不能更改a. 试试这个来修复它:
img
a
$(document).ready(function(){ var $a = $('a[rel=lightbox]'); $a.each(function(){ $(this).attr('href', $(this).find('img').attr('src')); }) })