单击时如何更改按钮的文本?并在再次单击时将其更改回来?我有我制作的这个 javascript。它没有给我我想要的东西。请帮忙?
$('#addbtn').click(function (){
if(document.getElementById('addMat').style.display == "none"){
document.getElementById('addMat').style.display= "inline";
$(this).val('Cancel');
}else
document.getElementById('addMat').style.display= "none";
$(this).val('Add Material');
});