0
我想根據目前的src
使用JavaScript進行<img src="...">
的簡單切換。因此,如果單擊圖片#plus_1
,腳本應檢查字符串'plus'
是否在src屬性中,如果是,則應更改src屬性。 不知道我犯了什麼錯誤,非常感謝!使用JavaScript的Src屬性開關
的JavaScript:
function ek_ak(id) {
var ement = document.getElementById(id);
if (ement.img.src.includes("plus") == true) {
ement.img.src == "minusred.png";}
}
HTML
提示:'=''VS =='' –
= ement.img.src 「minusred.png」' – Satpal
和'includes'功能不支持由IE瀏覽器。 – degr