gpt4 book ai didi

javascript - 如何在加载 Disqus 后运行 javascript

转载 作者:数据小太阳 更新时间:2023-10-29 06:12:12 25 4
gpt4 key购买 nike

我正在尝试使用 Disqus api,我需要运行一些修改 Disqus 评论线程的 javascript 代码。

如何在 Disqus 线程加载后运行 javascript 代码?

最佳答案

我遇到了类似的问题。我能想到的唯一可行的解​​决方案是运行 setInterval() 来检查 Disqus 容器 div 的高度。

例子:

var editable = true; // set a flag
setInterval(function() {
// Initially Disqus renders this div with the height of 0px prior to the comments being loaded. So run a check to see if the comments have been loaded yet.
var disqusHeight = $('#dsq-2').height();
if ( disqusHeight > 0 ) {
if (editable) { // To make sure that the changes you want to make only happen once check to see if the flag has been changed, if not run the changes and update the flag.
editable = false;
// Your code here...
}
}
}, 100);

关于javascript - 如何在加载 Disqus 后运行 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17004009/

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