gpt4 book ai didi

javascript - jQuery html 脚本 document.currentScript

转载 作者:行者123 更新时间:2023-11-30 06:24:12 27 4
gpt4 key购买 nike

我使用 html(),但找不到在父脚本中获取变量的方法。

child.html

<section class="mod_el">
<div id="any_element"></div>
</section>
<script type="text/javascript">
document.currentScript.childVar = {
parameterOne:"ONE"
};
</script>

parent.html

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<div id="container"></div>
<script>
async function LoadChild() {
const resp = await fetch(`child.html`, {
method: "GET",
credentials: "include"
});
if (!resp.ok)
return;
const result = await resp.text();
$("#container").html(result);
console.log(childVar.parameterOne); //!!!!!!! ?????
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
}
LoadChild();
</script>
</body>
</html>

在 parent.html 中获取变量“childVar”值的可能方法是什么?

非常感谢您的帮助

更新 - 寻找解决方案以这种方式解决了问题(没有jquery)但是发现结果..

在child.html中需要设置

document.currentScript.ownerDocument.childVar = {
parameterOne:"ONE"
};

在 parent.html 中

const link = document.createElement('link');
link.rel = 'import';
link.href = `child.html`;
link.setAttribute('async', '');
link.onload = (e) => {
console.log(link.import.childVar.parameterOne );
};
document.head.appendChild(link);

最佳答案

我不认为 document.currentScript 做你认为它做的事。它返回对当前正在执行的 <script> 的 DOM 元素的引用。标签。因此,当您将某些内容分配给 document.currentScript.someVar 时,您不是在创建全局变量或类似的东西,而是在创建 expando property在当前执行 <script>标签。

不过,在这种情况下,因为您是在 .html 创建的代码中调用它, document.currentScript实际上是对 <script> 的引用名为 .html 的标签.如果在插入 HTML 后我们查询 script,我们可以看到这一点在 #parentDiv 之后标记.

因为JS不喜欢</script>字符串中的标记,以下示例中的 HTML 是 URI 编码的。

本例中注入(inject)的实际 HTML 是:

<script>
document.currentScript.childVar = {
foo: 'bar'
};
</script>

var rawHtmlText = decodeURI(`%3Cscript%3E%0A%20%20document.currentScript.childVar%20=%20%7B%0A%20%20%20%20foo:%20'bar'%0A%20%20%7D;%0A;%3C/script%3E%0A`);
$("#parentDiv").html(rawHtmlText);

// This script block is inserted after #parentDiv, so use
// the sibling combinator to get a reference to it.
console.log($('#parentDiv + script').get(0).childVar);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="parentDiv"></div>

您可以明确地将某些内容放入全局范围,以便您可以通过将其添加为全局对象的属性来从其他代码访问它,在浏览器的情况下,即 window .

在此示例中注入(inject)的 HTML 是:

<section class="mod_el"></section>
<script>
window.globalVar = {
foo: 'bar'
};
</script>

var rawHtmlText = decodeURI(`%3Csection%20class=%22mod_el%22%3E%3C/section%3E%0A%3Cscript%3E%0A%20%20window.globalVar%20=%20%7B%0A%20%20foo:%20'bar'%0A%7D;%0A%3C/script%3E`);

$("#parentDiv").html(rawHtmlText);

console.log(globalVar);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="parentDiv"></div>

关于javascript - jQuery html 脚本 document.currentScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51489850/

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