IE10和其他瀏覽器在標籤中具有禁用屬性是有區別的。IE10中img標籤的禁用屬性
<!DOCTYPE html>
<html>
<head>
<title> Img Tag </title>
</head>
<body>
<script type="text/javascript">
function abc() {
alert("Hi");
}
</script>
<img style="width: 50px; height: 50px;" onload="abc()" onclick="abc()" src="./testimg.png" disabled />
</body>
</html>
IE10是尊重殘疾人財產和雙方的onload &的onclick不點火。如果我刪除禁用的屬性,它會觸發這兩個事件。
但是,Chrome不尊重殘疾人財產。我的意思是,它正在發射這兩個事件,而不管殘疾屬性。
我的問題是, 我可以在標籤中使用禁用的屬性嗎? 如果是,IE10或Chrome的正確行爲是什麼?這是一個在車庫中的錯誤?
'disabled'只適用於表單元素。 – Vucko
Vucko請檢查此鏈接:http://www.java2s.com/Code/JavaScriptReference/Javascript-Properties/disabledisappliedto.htm –
@Mohammed Imran Khan:這是針對JavaScript屬性,而不是HTML屬性。 – BoltClock