我正在使用手机间隙制作苹果应用程序(使用sqlite数据库).
除了我尝试插入网络链接时,我的所有插件都能正常工作.这个错误是因为网络链接中有"字符".
使用以下内容:
var content = 'hello, this is my <a href="www.google.com">link</a>'
tx.executeSql('UPDATE PAGES SET content="'+content+'" WHERE id="1"');
Run Code Online (Sandbox Code Playgroud)
返回以下错误
error code 1
error: "near "http": syntax error"
Run Code Online (Sandbox Code Playgroud)
如果我删除网站地址,我不会收到错误.我试过了:content = escape(content);
但这没效果.
我在js的顶部有以下权利(这是iScroll插件工作所需的).
document.addEventListener('touchmove', function (e) {e.preventDefault();}, false);
Run Code Online (Sandbox Code Playgroud)
在某些页面上,我需要重新启用此功能,以便正常的iPhone滚动接管(以及修复在页面上使用iscroll时iphone键盘不会在输入框上弹出的错误).
我无法锻炼语法.有人知道吗?
对于我的生活,我无法让它发挥作用.当test.php文件与此应用程序位于同一服务器上时,我收到警报,但是如果我将其指向另一个域,则它根本不起作用.功能是:
$.ajax({
url: 'http://www.mycrossdomain.co.uk/test.php',
crossDomain: true,
dataType: 'json',
success: function(data) {
alert('success');
}
});
Run Code Online (Sandbox Code Playgroud)
有没有人有任何有用的打印机?