gpt4 book ai didi

javascript - 通过 document.X 访问 DOM 元素

转载 作者:行者123 更新时间:2023-12-03 03:53:52 25 4
gpt4 key购买 nike

在哪里可以看到更多相关信息?我认为您必须始终执行 document.getElementById 才能与元素交互。

来源(Getting data from Google docs into Javascript)

So consider this JavaScript:

function Data(response) {
document.Team.tName.value = response.feed.entry[0].gs$cell.$t; // HERE !
}

以及以下 HTML:

<html>
<head>
<title>
</title>
<script type="text/javascript" src="teams.js" >
</script>
</head>
<body>
<table>
<form name="Team">
<tr>
<td>
<input size="19" name="tName" readonly >
</td>
</tr>
</form>
</table>
<script src="https://spreadsheets.google.com/feeds/cells/18WEeF3d9pJWYK1sheNHgc0KOi845cjyZgJ8x6TVisFM/1/public/values?alt=json-in-script&callback=Data&range=A1"></script>
</body>
</html>

最佳答案

使用document.querySelector:

function Data(response) {
document.querySelector('[name=tName]').value = response.feed.entry[0].gs$cell.$t;
}
<小时/>

document.querySelector

Returns the first Element within the document that matches the specified selector, or group of selectors.

<小时/>

document.querySelector('[name=tName]')

这将选择具有属性 name 和值 tName 的元素

关于javascript - 通过 document.X 访问 DOM 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45046039/

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