我有一个 HTML 锚标记,例如
<a href="anchorid" onclick="callEvent(1)">
在这里,我将 Javascript 函数称为
<script>
function callEvent(anchor) {
alert("Anchor ID is - "+anchor);
document.getElementById("anchorid").onClick = function () { callEvent(0) }; // BY using this code, update the onclick callEvent(0), like toggle
}
</script>
我想更新锚标签
<a href="anchorid" onclick="callEvent(0)">
使用此代码时,它不会按照我的要求进行更新。
document.getElementById("anchorid").onClick = function () { callEvent(0) };
我如何让它更新?