我正在寻找一种简洁的方法来编码以下示例中的 append 参数:
imgBox$.append("<div class='cellGrip cellGrip_se' title='Drag'></div><div class='cellGrip cellGrip_sw' title='Drag'></div><div class='cellGrip cellGrip_ne' title='Drag'></div><div class='cellGrip cellGrip_nw' title='Drag'></div>");
以上工作,但为了清楚起见,我宁愿写:
imgBox$.append("<div class='cellGrip cellGrip_se' title='Drag'></div>
<div class='cellGrip cellGrip_sw' title='Drag'></div>
<div class='cellGrip cellGrip_ne' title='Drag'></div>
<div class='cellGrip cellGrip_nw' title='Drag'></div>");
但后来我收到有关未终止字符串的投诉。
感谢您的任何想法。