gpt4 book ai didi

javascript - JS中 ".innerHTML"和 ".value"的区别

转载 作者:数据小太阳 更新时间:2023-10-29 04:00:33 24 4
gpt4 key购买 nike

我对 JavaScript 中 .innerHTML.value 之间的区别感到困惑。这是我的代码:

<body>
Input string: <input type="text" id="input" />
....
</body>

当我使用这段代码时,我无法获取输入字符串的内容:

var str=document.getElementById("input").innerHTML;

虽然我使用以下代码,但它有效:

var str=document.getElementById("input").value;

谁知道它们有什么区别?

最佳答案

value 是指输入元素(或textearea)的值

<input value="hello world">

值将是 "hello world"(或在其中键入的任何值)


innerHTML 是指 HTML 元素内的内容。

<div>
<span class="hello">
All tags and their children are include in innerHTML.
</span>
All this is part of innerHTML.
</div>

div 标签的 innerHTML 将是字符串:

  '<span class="hello">
All tags and their children are include in innerHTML.
</span>
All this is part of innerHTML.'

关于javascript - JS中 ".innerHTML"和 ".value"的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31225901/

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