gpt4 book ai didi

javascript - 如何获取 HTML 元素的值

转载 作者:行者123 更新时间:2023-11-28 17:02:56 25 4
gpt4 key购买 nike

我想获取 <p/> 的值使用 JavaScript 的元素,但相反,我得到 undefined :

HTML:

<p id="bool_"> _test_</p>

JavaScript:

var x = document.getElementById("bool_").value;
alert(x); // Alerts 'undefined'

最佳答案

尝试使用 HTML 元素的 innerText 属性。

const x = document.getElementById("bool_").innerText;
alert(x);

关于javascript - 如何获取 HTML 元素的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56827259/

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