我有一個多行字符串模板在它自己單獨的js文件中用於下劃線js。但是,不管我怎麼逃脫換行符我仍然得到一個:Javascript多行字符串和意外標記ILLEGAL
Uncaught SyntaxError: Unexpected token ILLEGAL
上的文件的1號線時,它的加載到瀏覽器。
App.Templates['template1'] = '\
<div data-role="page" data-theme="c" id="" data-title="">\
<div data-role="content" class="subnav">\
<table id="day-table" cellpadding="0" cellspacing="0" border="0">\
<thead class="ui-body-a">\
<tr>\
<th>T</th>\
<th>J</th>\
<th>H</th>\
<th>C</th>\
</tr>\
</thead>\
<tbody>\
</tbody>\
<tfoot>\
<tr>\
<td class="total-label" colspan="2">Total:</td>\
<td class="total"></td>\
</tr>\
<tr>\
<td class="btn-row">\
<a href="#r" data-role="button" id="add-btn" data-rel="dialog" data-mini="true" data-inline="true" data-icon="add">Add Rows</a>\
<a href="#" data-role="button" id="save-btn" data-rel="dialog" data-mini="true" data-inline="true" data-theme="b" data-icon="check">Save</a>\
</td>\
</tr>\
</tfoot>\
</table>\
</div><!--/content-->\
</div><!-- /page -->';
任何想法?
你缺少了不少''\\的 – Esailija
我愛的Javascript,但有時它讓我想要做很多sobtears出我的眼睛。 –