这是片段
let thtml = "<html><body><div id=app><div id=viewer></div></div></body></html>"
jsdom.env({
html: thtml ,
done: function(err: any, window: any) {
console.log(window.document.getElementById("viewer"));
}
});
此处window.document.getElementById("viewer")
返回空HTMLDivElement
。
在Chrome中,我得到了div id="viewer"
,期望它应该返回相同的div元素。
这是一个错误还是我错过了什么?