在cheerio中创建新元素的最佳方法是什么?
可能是:
cheerio.load('<li>something in here!</li>')
或
$('li', '<li>bla, bla, bla, ...</li>')
答案 0 :(得分:3)
append
和上下文字符串都没有实际创建HTML。它们是创建虚拟DOM的起点。
Refer to the Manipulation section in the documentation用于注入DOM的方法。即,提供以下注射方法:
appendTo
prepend
prependTo
after
insertAfter
before
insertBefore
replaceWith
html
wrap