英 [ə'pend] 美 [ə'pend]
用作及物动词 (vt.)
Append additional data to the file object.
在文件对象中附加上其他数据。
If you hand in your report late, append a note explaining the reason for the delay.
如果你的报告迟交了,附加一便条解释你迟交的原因。
We will append the picture separately.
我们将分开添加图片。
拓展资料:词汇搭配
append macros 附加宏指令
append command 附加命令
append mode 附加方式
append record [计] 追加记录
append macro 附加宏命令
你可以给每条记录加一个唯一标识,然后在append之前通过唯一表示校验,比如:
<li data-id="1"></li><li data-id="2"></li> var id = 3, html
if ($('[data-id="' + id + '"]').length === 0) {
html = '<li data-id="' + id + '"></li>'
$('ul').append(html)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)