有这些简单的线条,其中我有一个 id 为 txtArea 的 textarea,我允许用户在淡入后填充文本,因为它是用 style = diplay:none 初始化的
var area = $('#txtArea');
str = area.val();
document.write("here i am" + str);
当打印出来时,我只是得到“我在这里”为什么变量不捕获输入?
包含 txtArea 的 div 的 html 是
</div>
<div id="newtext" style="display:none" >
<textarea rows="50" cols="200" id = "txtArea" > </textarea>
<button class="btn2">SEE YOUR TEXT</button>
</div>