私は警告( "何か")のラベルにマウスを動かすと、私は多くの機能を試しましたが、常に警告はラベルをクリックして、それはラベルに! 私が試してみました:あなたはjQueryのモバイルが提供するモバイル特定の仮想イベントを見たいJquery mobile and mouseoverイベント
$("#show").mouseover(function(){
alert("something");
});
$("#show").mouseenter(function(){
alert("something");
});
$("#show").live('vmouseover', function() {
alert("something");
});
$("#show").hover(
function() {
alert("something");
});
は、マウスイベントは、モバイル上では動作しません、あなたが探しています交互接触イベント。 –