jquery mobile error : Cannot set property mobile of undefined

今天測試jquery mobile時,出現了下列的誤訊息:
Uncaught TypeError: Cannot set property 'mobile' of undefined

網路上有人提到可能是版本不合,例如 jQuery-Mobile  1.3.1,
需要 jQuery 1.8.3以上的版本,否則會有錯誤的訊息。
但是我的版本都是最新版,且也符合官網的要求:




最後發現原來只是我把順序弄反了,jquery要在jquery mobile之前引入
原本的程式碼:
<script type="text/javascript" src="js/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>

修改後的程式碼:
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.4.5.min.js"></script>


Oracle DB的listener.log清理