我找到了一个RSS阅读器,并对其进行了一些更改。它给了我“应用程序错误”。 “(文件:///android_assset/www/index.html)”。
我认为原因是它试图下载大量数据,因此崩溃了。 我做的是这个:
我从服务器下载了所有Javascript和CSS,并尝试在本地访问它。但它显示一个空白屏幕。
这个给出了上面提到的错误:
<html class="ui-mobile"><head><base href="http://fiddle.jshell.net/_display/"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>- jsFiddle demo</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.js"></script> <link rel="stylesheet" type="text/css" href="/css/result-light.css">
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script> <link rel="stylesheet" type="text/css" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css">
<style type="text/css">
这个给出了空白屏幕:
<html class="ui-mobile"><head><base href="http://fiddle.jshell.net/_display/"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>- jsFiddle demo</title> <script type="text/javascript" src="jquery-1.6.4.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0.1.js"></script>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script> <link rel="stylesheet" type="text/css" href="jquery.mobile-1.0b2.min.css">
<style type="text/css">
答案 0 :(得分:0)