data - *
屬性存儲(chǔ)自定義數(shù)據(jù)。
存儲(chǔ)的數(shù)據(jù)可以在頁(yè)面的JavaScript中使用。
存儲(chǔ)的數(shù)據(jù)可以在頁(yè)面的JavaScript中使用。...
屬性值可以是任何字符串。
data - *
屬性是HTML5中的新屬性。
<element data-*="value">
data-* |
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<head>
<script>
function showDetails(animal) {
console.log(animal.getAttribute("data-animal-type"));
}
</script>
</head>
<body>
<p onclick="showDetails(this)" id="owl" data-animal-type="it is a test.">Click me</li>
</body>
</html>
更多建議: