xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript HTML DOM - Changing Attributes示例 - 基础教程(div.cn)</title>
<body>
<a href="https://www.div.cn/css/">CSS Tutorial</a>
<p>单击按钮以从锚元素中删除href属性:</p>
<button onclick="myFunc()">点我试试</button>
<script>
function myFunc() {
document.getElementsByTagName("a")[0].removeAttribute("href");
}
</script>
</body>
</html>