gpt4 book ai didi

javascript - 自定义 HTML 属性,: Firefox vs. IE

转载 作者:行者123 更新时间:2023-11-28 04:08:41 25 4
gpt4 key购买 nike

我必须对以下简单的 HTML 页面进行哪些更改才能使 Firefox 像在 IE 中一样读取和设置自定义属性?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Original Value</title>
</head>

<body>

<div MyAttribute="Original Value" id="Label1">Hello World</div>

<form method="post">
<table style="width: 100%">
<tr>
<td>
<input name="Button1" onclick="button1_click();" type="button" value="button" /></td>
</tr>
</table>
<script type="text/javascript">
function button1_click(){

alert("Enter");
//alert("Label1.MyAttribute " + Label1.MyAttribute);
alert(Label1.getAttribute("MyAttribute"));

Label1.MyAttribute = "Updated";
alert("Label1.MyAttribute " + Label1.MyAttribute);

}
</script>
</form>

</body>

</html>

最佳答案

您已经发现了 getAttribute 但您需要使用 document.getElemenById 检索元素并且您需要使用 setAttribute 来修改属性.

function button1_click()
{
alert("Enter");
var label1 = document.getElementById("Label1");
alert(label1.getAttribute("MyAttribute"));
label1.setAttribute("MyAttribute", "Updated");
alert("Label1.MyAttribute " + label1.getAttribute("MyAttribute"));
}

关于javascript - 自定义 HTML 属性,: Firefox vs. IE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1888237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com