2012-03-06 62 views
-1

是否有手機差距或可能在jQuery中的功能,這意味着我可以拿起任何水龍頭&舉行元素事件。我看着到PhoneGap的文檔,但無法找到任何PhoneGap Android的點擊與舉行事件

我看到jQuery Mobile的有,但我沒有,這包括目前並希望我並不需要添加另一個庫這個

謝謝

回答

-1

在這裏你可以做同樣的事情。我試圖在我的項目

<!DOCTYPE html> 
<html> 
<head> 
<meta name="viewport" content="width=device-width, initial-scale=1"> 
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> 
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> 
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> 
<script> 
$(document).on("pagecreate","#pageone",function(){ 
    $("p").on("taphold",function(){ 
    $(this).hide(); 
    });      
}); 
</script> 
</head> 
<body> 

<div data-role="page" id="pageone"> 
    <div data-role="header"> 
    <h1>The taphold Event</h1> 
    </div> 

    <div data-role="main" class="ui-content"> 
    <p>If you tap and hold me for one second, I will disappear.</p> 
    <p>Tap and hold me!</p> 
    <p>Tap and hold me too!</p> 
    </div> 

    <div data-role="footer"> 
    <h1>Footer Text</h1> 
    </div> 
</div> 

</body> 
</html> 

http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_event_taphold

+2

代碼塊本身並不能提供一個很好的答案。請添加解釋(爲什麼它解決了問題,錯誤在哪裏,等等......) – 2016-01-08 12:33:52

+0

試圖讓你的意思是「在這裏你可以做同樣的事情」。請解釋你對這段代碼的建議。 – Alfabravo 2016-01-08 15:26:23