ウェブページには2つのdivがあります
<div top> : This div overlap the under div unless the user exit it
<div under> : This div has a function, when user hover one of the item on it, it will process something
したがって、divトップが下のdivを生成してオーバーレイするときに、マウスを誤ってページに合わせると、下のdivの関数がトリガーされます。これを防ぐ方法はありますか?div topが表示されているときに、すべてのアプリケーションがdivtopに焦点を合わせたいだけです。ありがとう
var handler = function() {
$('drag').unbind('hover', handler);
};
動作しませんか?