gpt4 book ai didi

Javascript 相当于 $ ('body' )

转载 作者:太空狗 更新时间:2023-10-29 15:32:39 24 4
gpt4 key购买 nike

是否有等效于 jQuery $('body') 的 javascript,如以下代码所示?我想让它在不需要 jQuery 的情况下运行。

var content = $('body').html();
var comments = content.match(/<!--.*?-->/g);
if(comments!=null|comments!=undefined){
for (var x = 0; x < comments.length;x++){
console.log(comments[x]);
}
}
else{
console.log('No Comments');
}

谢谢

https://gist.github.com/hughrawlinson/6078055

最佳答案

是的,就是document.body

 var contents = document.body.innerHTML;

关于Javascript 相当于 $ ('body' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17853555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com