如何避免错误的 EOL 转义 jQuery

How to not have errors for bad EOL escaping jQuery

目前我这样做:

$appendedItems.append('\
    <li class="user_profile_card" style="'+newline+'">\
        <div class="line-structure-top"></div>\
        <div class="top-colour-section-tier2"></div>\
        ...
    </li>');

但是 sublime returns 糟糕的 EOL 错误/警告转义。我可以忽略它,但讨厌看到警告。

这应该如何正确完成?

您可以改用字符串连接:

$appendedItems.append('<li class="user_profile_card" style="' + newline + '">' +
    '<div class="line-structure-top"></div>' +
    '<div class="top-colour-section-tier2"></div>' +
'</li>');