我有將HTML當中有關相機的div分離 並在額外的專案中植入 caraccident.js index.html
這方法成功執行能夠啟動相機(實機AND模擬),雖然進入頁面要按繼續拍攝的按鈕才能呼叫,但是我將同樣程式碼直接轉入大專案中變成 index.html <---這是程式主頁面 camera.html<--相機區html 一樣jquery的資料區,但是發現這樣子無法將相機啟動,我也試過網路一堆javescript的例子套入都無法成功,想請問是什麼原因
index載入的檔案有 jquery-mobile/jquery.mobile-1.0.min.css jquery-mobile/jquery-1.6.4.min.js jquery-mobile/jquery.mobile-1.0.min.js jquery-mobile/caraccident.css
index轉移頁面的CODE <li><a href="camera.html" rel="external">拍攝</a></li>
camera的CODE <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>行車守護者</title> <link href="jquery-mobile/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"/> <link href="caraccident.css" rel="stylesheet" type="text/css"/> <script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script> <script src="jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"></script> <script src="caraccident.js" type="text/javascript"></script> <script src="phonegap.js" type="text/javascript"></script> </head> <body> <div id="photo" data-add-back-btn="true" data-role="page"> <div data-position="fixed" data-role="header" data-theme="b"> <h1>拍攝相片</h1> </div> <div class="divcenter" data-role="content"><img id="showPhoto"><a id="btnPhoto" data-inline="true" data-role="button">繼續拍攝</a> <div id="prePhoto_box"> <div id="prePhoto"></div> </div> </div> </body> </html>
|