$('#mydiv').mouseenter( function(){ my_superduper_selection_function(this); });
0
0
1 Answer
0
ドラッグしたようにテキストを選択する場合は、https://stackoverflow.com/questions/985272/jquery-selecting-text-in-an-element-akin-to-highlighting-with-your-mouse [この質問]。 どのアプローチを試しても、マウスオーバーでそれを実現するには、http://api.jquery.com/mouseenter/ [.mouseenter()
]を使用します。
$('#mydiv').mouseenter( function(){ my_superduper_selection_function(this); });