我想在 onclick 时更改我的表单的某些输入的类,该类具有 class='mypost_title'。
我试过了,但它不起作用
<a href='' onclick='popup_mypost(e)'>change me</a>
<a href='' id=edit-href onclick='popup_mypost(e)'>back me</a>
<script>
function popup_mypost(e)
{
var inputs = document.getElementsByClassName("mypost_title");
for(var i = 0; i < inputs.length; i++)
{
inputs[i].className = "change";
}
var edit_href = document.getElementById("edit-href");
edit_href.onclick = function()
{
var inputs = document.getElementsByClassName("change");
for(var i = 0; i < inputs.length; i++)
{
inputs[i].className = "mypost_title";
}
}
}
</script>