我想在iframe中添加类到img,如何实现?感谢
$(iframe).ready(function(){
$('img[src*="img/logo25.png"]').addClass('selected');
});
<iframe src="img/logo25.png">
</iframe>
答案 0 :(得分:0)
尝试:
$('#yourIframeId').contents().find('img[src*="img/logo25.png"]').addClass('selected');