开发者

Selecting text in div on mouseover

开发者 https://www.devze.com 2023-01-15 03:13 出处:网络
How can I select text when I mouse over a div?开发者_运维问答If you mean selecting the text as if you dragged over it, read this question. Whichever approach you try, to make it happen on mouseover, u

How can I select text when I mouse over a div?开发者_运维问答


If you mean selecting the text as if you dragged over it, read this question. Whichever approach you try, to make it happen on mouseover, use .mouseenter():

$('#mydiv').mouseenter( function(){
  my_superduper_selection_function(this);
});
0

精彩评论

暂无评论...
验证码 换一张
取 消