5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jQuery Mobileを使う時の注意事項

Last updated at Posted at 2017-04-19

jQuery Mobileを用いる時いろいろ不具合があると思いますが、これからわたしが使う時でてきた不具合に基づき、注意事項を共有しようと思います

###1  jQuery Mobileを引用したのに効かない###
これは、引用の順次が間違っている可能性があります

<script src="/common.js"></script>
<script src="/jquery.mobile-1.4.5.min.js"></script>

jQuery Mobileはかならず携帯用のJavaScriptファイルの後ろに追加

###2  loadingがでまくる###
元ファイルでここを検索して

jquery.mobile-1.4.5.min.js
...{theme:"a",textVisible:!1,html:"",text:"loading"}...

それを

jquery.mobile-1.4.5.min.js
...{theme:"a",textVisible:!1,html:"",text:""}...

に変更

###3  <a>タグが飛ばない###

jQuery Mobileはデフォルトで<a><form>の請求をajaxに変換してしまうので
このようにdata-ajax="false"の属性を追加

sample.html
<a href="qiita.com" data-ajax="false"></a>
5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?