重複の可能性:
ホバー() でデリゲート() を使用しますか?
私はこのコードを試していますが、どうやら何か間違っているようです。このコードでは、hover
効果は機能しません。
ただし、次のようなもの$('.group>span').hover (function() {
はうまく機能しますが、html()
コンテンツを委任する必要があります。
<div class="group">
<span></span>
</div>
$('.group>span').delegate("hover", "a", function() {
$(this).html('<a href="#new_list">Some button</a>');
}, function() {
$(this).empty();
});
何か案が?ありがとう