0
我再造型使用Jquery mobile listview點擊項目不會下載
然而,當我點擊我的新列表中的目標被打開一個空白頁面的瀏覽器,而不是下載的,因爲它的項目一個普通的HTML頁面之前,如果我按加載頁面上顯示源我看到該文件的數據內容。
我需要它至少將瀏覽器URL設置爲文件的URL,以便我可以從iOS應用程序下載它,我正在開發,在那裏我重寫加載頁面在UIWebView。而是將當前的URL傳遞給下載和解析過程。
我的HTML看起來像這樣:
<html>
<font color="LightGray">
<body background="keynote_background.jpg" link="#C0C0C0" vlink="#808080">
<div data-role="page" id="homepage" style="background: #000000 url('keynote_background.jpg') repeat;">
<h1>Work Archives:</h1>
<ul data-role="listview">
<li><a href="http://users.student.lth.se/XXXXX/apps/workout/Extreme.wrk" type="application/work" download="Extreme.wrk">ExtremeWork</a></li>
<li>Send work to [email protected] to get published here...</li>
</ul>
</div>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js">
</script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js">
</script>
</body>
</font>
</html>
我的目標-C donwload程序:
- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request
navigationType:(UIWebViewNavigationType)navigationType {
NSURL* url = [[NSURL alloc] initWithString:[[request URL] absoluteString]];
[DELEGATE loadFile:url];
if (loadedNowDownloadMode) {
[SVProgressHUD showSuccessWithStatus:@"Work Updated!"];
}
return !loadedNowDownloadMode;
}
我如何可以使用jQuery移動的列表視圖樣式,但保持普通的HTML錨的行爲,我想這是最簡單的方法?