JQuery –在哪里添加传统调用

当我开始使用这个很棒的jQuery扩展时,我立即发现自己想要在触发移动插件之前修改页面上的内容。

事实证明,推荐的解决方案是将传统jQuery调用简单地放在加载移动插件的引用之前。

这样,您的jQuery命令就有机会在加载库之前运行。这是遵循的模式:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
<script type="text/javascript" xx_src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script>
 $(document).ready(function() {
  // 您的jQuery命令在移动参考之前先移至此处
 });
</script>
<script type="text/javascript" xx_src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>