我正在开发一个具有多种语言的 PhoneGap Web 应用程序,并且我正在使用jQuery-Localize来做。我让它在一个简单的静态页面上运行,但是当我将它与 jQuery-Mobile 集成时它不起作用。
这是我的简单测试页面:
<div data-role="page" id="pageHome">
<script type="text/javascript">
$("#pageHome").live('pagecreate', function() {
$("[rel*=localize]").localize("index");
});
</script>
<div data-theme="a" data-role="header">
<h3>Home</h3>
<div data-role="navbar" data-iconpos="top">
<ul>
<li><a href="#pageUne" rel="localize[one]" data-theme="" data-icon="home" class="ui-btn-active">no</a></li>
<li><a href="#pageTwo" rel="localize[two]" data-theme="" data-icon="star">no</a></li>
<li><a href="#pageThree" rel="localize[three]" data-theme="a" data-icon="check">no</a></li>
</ul>
</div>
</div>
<div id="content" data-role="content">
<div><b>Welcome!</b></div>
</div>
我在 PhoneGap 控制台中收到下一条消息:
未捕获的 SyntaxError: http ://code.jquery.com/jquery-1.6.4.min.js:2 处的意外字符串
我试图在事件pagebeforecreate和pageInit处处理但没有成功