1

我想将文本元素的属性从必需更改为不需要。我正在使用 javascript 来执行此操作。我正在根据单选按钮的输入调用一个函数,并且我正在使用 html 5..

4

1 回答 1

4
document.getElementById("adiv").removeAttribute("style")

document.getElementById("myimage").setAttribute("src","another.gif")

var getvalue=document.getElementById("myimage").getAttribute("src")

现在但它在一个函数中并按照你的意愿使用它。

这就是您在 JavaScript 中设置和删除属性的方式。

来源:http ://www.javascriptkit.com/dhtmltutors/domattribute.shtml

于 2012-08-21T10:13:52.573 回答