您好,登錄后才能下訂單哦!
這篇文章主要講解了“javascript怎么改變圖片鏈接地址”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“javascript怎么改變圖片鏈接地址”吧!
javascript改變圖片鏈接地址的方法:【window.onload = function () {ImageSrc();} function ImageSrc() { var imgs = document.getEleme...】。
本文操作環(huán)境:windows10系統(tǒng)、javascript 1.8.5、thinkpad t480電腦。
JavaScript改變圖片鏈接地址的具體實(shí)現(xiàn)方法:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script type="text/javascript"> window.onload = function () { ImageSrc(); } function ImageSrc() { var imgs = document.getElementsByClassName("ArticleBody")[0].getElementsByTagName("img"); for (var i = 0, l = imgs.length; i < l; i++) { imgs[i].src = imgs[i].src.replace("gjbt", "www"); //img[i].src is the reference to the image. } } </script> </head> <body> <div class="ArticleBody"> <img src="image/01.jpg" /> <img src="image/04.jpg" /> <img src="image/02.jpg" /> <img src="image/03.jpg" /> </div> </body> </html>
感謝各位的閱讀,以上就是“javascript怎么改變圖片鏈接地址”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)javascript怎么改變圖片鏈接地址這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。