我想知道如何使用 JavaScript/jQuery 在 html 标签中更改自己定义的属性。例如:我定义了称为升序的属性:
<th ascending="true" id="1">some text</th>
在 JavaScript/jQuery 中,我想在“false”上更改该属性,我正在尝试这种方式,但它不起作用(我猜这个选项仅适用于预定义的属性):
var tag = document.getElementById("1");
tag.ascending = "false";