gpt4 book ai didi

javascript - 通过 "outside the document"标签的javascript获取标签内容

转载 作者:行者123 更新时间:2023-12-02 05:06:32 24 4
gpt4 key购买 nike

我有这个 HTML 源代码:

<div id='fbResponse' style='display:none'>{"key1":"value1","key2":"value2"}</div>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
....
</script>
</head>
<body onload="initFB()" style="text-align: center">
....
</body>
</html>

如何获取 ID 为“fbResponse”的 div 标签的内容文本,我已经尝试了这个功能

document.getElementById('tag id'),

它不起作用,我认为这是因为标签:

<div id='fbResponse' style='display:none'>{"key1":"value1","key2":"value2"}</div>

在“文档”之外。

编辑:我需要它工作的浏览器是移动版 Safari (iOS)

最佳答案

<div id='fbResponse' style='display:none'>{"key1":"value1","key2":"value2"}</div>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>

<script type="text/javascript">
console.log(document.getElementById('fbResponse'));
</script>
</body>
</html>

即使在 IE 中也有一个日志......我认为你只是做错了什么

关于javascript - 通过 "outside the document"标签的javascript获取标签内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10880320/

24 4 0