私が持っているとしましょう
<style>
#container:hover{background:red}
</style>
<div id="container"><input type="submit"></div>
送信にカーソルを合わせると、#container
まだ赤です。jqueryで入力マウスオーバーのホバーを削除できますか? bg を変更したくありません。$('#container').css('backgroundColor','color')
次のようなものが必要です $('#container').removeAttr('hover')
。