// 鑾峰彇鎵€鏈夌殑 img 鏍囩 var imgTags = document.querySelectorAll('img'); $(function(){ // 寰幆閬嶅巻姣忎釜 img 鏍囩 imgTags.forEach(function(img) { // 鑾峰彇褰撳墠 img 鏍囩鐨 alt 灞炴€у€ var alt = img.getAttribute('alt'); // 妫€鏌 alt 灞炴€ф槸鍚︿负绌 if (!alt) { // 濡傛灉鏄┖鐨勮瘽锛岃缃负鎸囧畾鏂囨湰 img.setAttribute('alt', '鐧戒簯绉戞妧'); } }); });