美元符号jquery as string:unterminated string literal

时间:2017-01-04 09:26:55

标签: javascript jquery twitter-bootstrap

我操纵了一些html,在这样的模态引导程序中显示一个小形式:

$.each(response, function(i, item){
    detail += "<div><input name='detail-tipe' type='checkbox' value='" + response[i].nama_detail + "' class='detail-tipe' /> " + response[i].nama_detail.toString() + "</div>";
});

detail +=  "$('.detail-tipe').each(function(){
    var attrib = $(this).attr('value');
    for ( var j=0, k = remo.length; j < k; j++ ) {
        if(attrib == remo[j]){
            $(this).attr('checked', 'checked');
        };
    }
})";

但是,美元符号没有终止。可能吗 请建议。

1 个答案:

答案 0 :(得分:1)

如果要为变量分配多行字符串,则需要在每行的末尾放置一个\,以告诉解释器字符串正在继续。否则它认为你想开始一个新的实际代码。

detail += "$('.detail-tipe').each(function(){ \
  var attrib = $(this).attr('value'); \
  for ( var j=0, k = remo.length; j < k; j++ ) { \
    if(attrib == remo[j]){ \
        $(this).attr('checked', 'checked'); \
    }; \
  } \
})";