我正在尝试使用以下代码将html
标记放入我的array
//my htmlData which is entered by user so it could be varies.
<em>test</em> here for the testing purpose
second line <strong>texts</strong> here
我想array
通过使用将它们存储在我的
var data = [];
$(htmlData).contents().each(function(){
data.push($(this).html().trim());
}
但我有一个错误说Uncaught TypeError: Cannot call method 'trim' of null.
不知道为什么$(this).html()
会返回一个null
.
有人能帮我一下吗?非常感谢!