2013-03-15 69 views
1

我在我的網站(http://www.simpleprods.com)上添加了對Jquery Mobile的引用以獲取事件vmousedown,vmouseup等。我只需要這些,儘管JQuery移動惱人地添加了一些醜陋的自動加載消息到我的網頁。這是100%來自JQuery手機。 我只想要vmousedown,vmouseup和vmousemove,我不需要任何加載消息和橙色框。我已經找到了如何取消郵件,但橙色框不能被刪除。JQuery Mobile自動添加奇怪的加載消息

任何人都知道該怎麼辦? 我會很高興,如果有人能告訴我怎麼只得到vmousedown,vmouseup和vmousemove沒有所有的其他東西,jQuery Mobile的有...

回答

2

您可以重建jQuery Mobile的框架,只有你需要的功能。

去這個網站:

http://jquerymobile.com/download-builder/

選擇:

虛擬鼠標(VMOUSE)綁定

後只需點擊建立我的下載

例子:

<!DOCTYPE html> 
<html> 
<head> 
    <title>jQM Complex Demo</title> 
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> 
    <script type="text/javascript" src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script> 
    <script src="jquery.mobile.custom.js"></script> 
    <script> 
     $(document).on('vmousedown', '[data-role="content"]', function(){  
      alert('asdas'); 
     }); 
    </script> 
</head> 
<body> 
    <div data-role="page" id="index"> 
     <div data-theme="a" data-role="header"> 
      <h3> 
       First Page 
      </h3> 
     </div><p></p> 

     <div data-role="content" style="height: 100px; width: 500px; background: #aabbcc;"> 
      <div data-role="popup" id="initialpopup" data-overlay-theme="a" data-theme="a">Foobar</div> 
     </div> 

     <div data-theme="a" data-role="footer" data-position="fixed"> 

     </div> 
    </div> 
</body> 
</html> 

你只需要提供從製作工具來製作jquery.mobile.custom.js文件。

+0

非常感謝,在許多情況下,這對我很有幫助。 – Kfirprods 2013-03-15 20:36:54

0

確保您沒有在<body>標記中包含腳本。這可能會導致加載標記在不應顯示時顯示。