我有内联html的webview作为我窗口的一部分。它包含一个大约10行的html表。当我尝试向表中添加1行时,应用程序崩溃。
webView = Titanium.UI.createWebView({
scalesPageToFit:false,
top:0,
bottom:0
});
var html = '<html>'+
'<body>'+
'<table width="98%" align="center" border="0" cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td align="left" height="25" colspan="2" style="color:#ba2424; font-size:14; font-weight:bold">Use RedAnar To:</td>'+
'</tr>'+
'<tr>'+
'<td width="10%" height="25"><img src="'+sc+'"></td>'+
'<td width="90%" height="25" style="color:#000; font-size:14; font-weight:bold">Store Card Data</td>'+
'</tr>'+
'<tr>'+
'<td width="10%" height="25"><img src="'+eo+'"></td>'+
'<td width="90%" height="25" style="color:#000; font-size:14; font-weight:bold">Explore Offers</td>'+
'</tr>'+
'<tr>'+
'<td width="10%" height="25"><img src="'+cl+'"></td>'+
'<td width="90%" height="25" style="color:#000; font-size:14; font-weight:bold">Capture Loyalty</td>'+
'</tr>'+
'<tr>'+
'<td width="10%" height="25"><img src="'+tp+'"></td>'+
'<td width="90%" height="25" style="color:#000; font-size:14; font-weight:bold">Track Points</td>'+
'</tr>'+
'<tr>'+
'<td width="10%" height="25"><img src="'+vb+'" valign="absmiddle"></td>'+
'<td width="90%" height="25" style="color:#000; font-size:14; font-weight:bold">View Balances</td>'+
'</tr>'+
'<tr>'+
'<td align="left" height="25" colspan="2" style="color:#ba2424; font-size:14; font-weight:bold">Card Description</td>'+
'</tr>'+
'<tr>'+
'<td align="left" height="20" colspan="2" style="color:#000; font-size:14; font-weight:normal">'+description+'</td>'+
'</tr>'+
'<tr>'+
'<td align="left" height="25" colspan="2" style="color:#ba2424; font-size:14; font-weight:bold">Highlights</td>'+
'</tr>'+
'<tr>'+
'<td align="left" height="20" colspan="2" style="color:#000; font-size:14; font-weight:normal">'+highlights+'</td>'+
'</tr>'+
'</table>'+
'</body>'+
'</html>';
webView.html = html;
如果我在此之后尝试再插入1行,则应用程序将崩溃。有什么建议吗?
答案 0 :(得分:1)
我刚刚测试了你的代码,并且它有效(我已经将你的变量用作文本,因为我不知道它们里面有什么)。
我在最后添加了以下行,它也有效:
'</tr>'+
'<tr>'+
'<td align="left" height="20" colspan="2" style="color:#000; font-size:14; font-weight:normal">'+"highlights"+'</td>'+
'</tr>'+
当它不起作用时你添加了哪一行?当它崩溃时它会给出什么错误?