私は持っています:
<a id = "button" style="display:inline"></a>
<a id = "buttonPressed" style="display:none"></a>
そして、私は使用しています
$('#button, #buttonPressed').click(function(event) {
$('#button, #buttonPressed').toggle();
//Do other stuff
})
「display:inline」ボタンは必要に応じて「display:none」に変更されますが、「display:none」ボタンは目的の「display:inline」ではなくstyle=""に変更されます。
これに対処するにはどうすればよいですか?