$().text();没有得到改变的值

发布于 2024-12-16 12:27:12 字数 526 浏览 0 评论 0 原文

因此,我正在开发一个应用程序,我需要用户输入的内容在处理后转移到另一个元素。但是,当我尝试获取

问题出在 formatcss.jsindex.html 文件

Github Repo - http://github.com/JordanAdams/Prefixrr

实时应用 - http://jordanadams.github.com/Prefixrr

谢谢, 约旦

So I'm working on an app where I need what the user enters to be transferred to another element after being processed. However when I try to grab the .text() value of the <textarea>, it simply returns whatever the value was when the page first loaded.

The problem lies in the formatcss.js and index.html files

Github Repo - http://github.com/JordanAdams/Prefixrr

Live App - http://jordanadams.github.com/Prefixrr

Thanks,
Jordan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈情不如逗狗 2024-12-23 12:27:12

尝试使用 .val() 而不是 .text()

${'#textareaid').val();

Try .val() instead of .text()

${'#textareaid').val();
七颜 2024-12-23 12:27:12

您需要抓住 .val() 而不是 .text()

http://jsfiddle.net/nJgN6/5/

You need to grab the .val() not .text()

http://jsfiddle.net/nJgN6/5/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文