我目前正在使用一堆输入文本字段,我想将其更改为 DIV,但我的大多数 JS 函数document.getElementById("inputField1").value
都会在输入字段的值设置如下时使用:
<input contenteditable="false" id="inputField1" type="text" size="12" style="background:#09F;color:#FFF;text-align:center" value="Hello World!"/>
如果我要Hello World!
在alert
如果我要使用 DIV,我将如何获得中间文本的值?
例如<div id="inField001">Hello World</div>
谢谢!