Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本区域的问题,它是由用户输入从数据库中动态填充的。
一切正常,但是一旦编辑了 textarea 的内容,它就不会在下一次函数调用后自行更新。
我已经偶然发现了这个线程,它告诉我应该使用 val() 方法。我做到了,但它没有用。我还尝试将函数设置为异步,以防止我的 clear() 函数在 php 填充 textarea 后立即执行,但也无法正常工作。
这是我的代码:
HTML / JS
PHP
提前致谢 :)
明白了... .text() 而不是 .val() ...
function copyToArea(){ var content = $('p#resultpara').text() ; $('textarea#editarea').val(content) ; }
也许你应该试试
$('textarea#resultpara').val("") ;