gpt4 book ai didi

javascript - ajax 完成后,加载 <script> 标签,但只加载具有特定 id 的标签

转载 作者:行者123 更新时间:2023-11-29 19:47:43 25 4
gpt4 key购买 nike

我目前正在使用无限滚动来加载更多内容,内容有 <script>需要运行的标签。所以我将下面的代码用作 ajax-callback :

JS 加载 ajax 回调:

function ajaxLoadedCallback() {
// contentElem is the HTML element you've loaded via ajax
scriptx = document.getElementsByTagName("script");

// Load scripts into new array because
// scriptx seems to change as scripts execute, at least in some browsers
scripts = new Array();
for (var idx=0; idx<scriptx.length; idx++) {

if (jQuery(scriptx[idx]).is("#inline-comments")) {
scripts[idx] = scriptx[idx].text;
}

}

console.log (scripts[idx]);
// execute each script in turn
for(idx=0; idx<scripts.length; ++idx) {
if (scripts[idx].length!=0) {
try {
// create a function for the script & execute it
f = new Function(scripts[idx]);
f();
} catch(se) {

} // end try-catch
} // end if
} // end for

}

每个内容帖子都有我要加载的脚本标签:

<script id="inline-comments" >
console.log ('<?php echo $post->ID; ?>' + 'has loaded...');
var tid_<?php echo $post->ID; ?> = setInterval( function () {
if ( document.readyState !== 'complete' ) return;
clearInterval( tid_<?php echo $post->ID; ?> );
inline_comments_ajax_load(<?php echo $post->ID; ?>)
}, 100 );
</script>

获取未捕获类型错误:无法读取此行未定义错误的属性“长度”:if (scripts[idx].length!=0) {

ajax 回调在正确的时间加载,但中断,因为我假设 scripts[idx]是空的。但为什么?当我使用 console.log()它显示何时 scriptx[idx]有一个id和id的名字。

更新 谢谢 PSL! console.log表明它正在寻找脚本,但 scripts.length 返回零

function ajaxLoadedCallback() {
scriptx = document.getElementsByTagName("script");


scripts = new Array();
for (var idx=0; idx<scriptx.length; idx++) {

if (jQuery(scriptx[idx]).is(".inline-comments-script")) {
console.log (".inline-comments-scriptfound!");
console.log ("####### .text #######");
console.log (scriptx[idx].text);
console.log ("####### .innerHTML ######");
console.log (scriptx[idx].innerHTML);
scripts.push = scriptx[idx].innerHTML;
}

}
console.log ("####### END ######");
console.log ("Found "+scripts.length+ " script(s)");

// execute each script in turn
for(idx=0; idx<scripts.length; ++idx) {
var content = scripts[idx];
if (content.length) {
try {
// create a function for the script & execute it
f = new Function(content);
f();
} catch(se) {

} // end try-catch
} // end if
} // end for

}

现在可以使用了!请参阅下面 PSL 的回答 - 如果您有 wordpress,您也可以实时查看它:https://github.com/MattMcFarland/inline-ajax-comments - 效果很好!

最佳答案

这里有几个问题。

for (var idx=0; idx<scriptx.length; idx++) {

if (jQuery(scriptx[idx]).is("#inline-comments")) {
scripts[idx] = scriptx[idx].text;
}

}

尽管没有匹配项并且您不想将任何项目推送到数组,但您正在递增循环迭代变量。因此,如果第一个脚本与您的条件不匹配,scripts[0] 将是未定义的,因此当您真正访问您的条件中未定义的属性 length 时,您会收到错误消息 if (scripts[idx].length!=0) {

另一个问题是 scriptx[idx].text 这里的 text 是一个函数所以你想要元素的真实文本而不是函数引用所以你应该写 jQuery(scriptx[ idx]).text()scriptx[idx].innerHTML。由于您使用的是 id 并且 id 不应该重复,因此您可以简单地将其写为:

     var txt = jQuery('#inline-comments').text();
if (txt.length) {
try {
// create a function for the script & execute it
f = new Function(scripts[idx]);
f();
} catch(se) {

} // end try-catch
} // end if

如果您打算将 inline-comments 从 id 转换为 class,并且您希望访问其中的多个,那么这应该可行。

 scripts = [];
for (var idx=0; idx<scriptx.length; idx++) {
if (jQuery(scriptx[idx]).is(".inline-comments")) {
scripts.push(scriptx[idx].innerHTML);
}
}
// execute each script in turn
for(idx=0; idx<scripts.length; ++idx) {
var content = scripts[idx];
if (content.length) {
try {
// create a function for the script & execute it
f = new Function(content);
f();
} catch(se) {

} // end try-catch
} // end if
} // end for

关于javascript - ajax 完成后,加载 &lt;script&gt; 标签,但只加载具有特定 id 的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18839172/

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