创建动态领域并获取价值

发布于 2024-10-07 07:27:51 字数 534 浏览 1 评论 0原文

我发布了关于此的另一个问题,但我认为这个会更简洁。

我用 javascript 动态创建了一个文本字段。我已经通过获取它的值来检查它是否在 DOM 中,但是当尝试从另一个函数访问它时,我得到的输入对象值为 null。实际上可以从动态创建的文本字段中获取当前值吗?

在一个函数内部:

comment_field = 'comment-HE382U3-2';
document.getElementById(comment_field).value = 'Write a comment...';

在另一个函数内部:

comment_field = 'comment-HE382U3-2';
if (document.getElementById(comment_field).value == 'Write a comment...')
    { document.getElementById(comment_field).value = '';}

不会发生,因为在 DOM 中找不到 [HTMLInputObject]。请帮忙。谢谢!

i posted another question about this, but i think this one will be more concise.

i've dynamically created a text field with javascript. i've checked to see that it's in the DOM by getting its value, but when trying to access it from another function i get a value of null for the input object. is it actually possible to get the current value from a dynamically created text field?

inside one function:

comment_field = 'comment-HE382U3-2';
document.getElementById(comment_field).value = 'Write a comment...';

inside the other:

comment_field = 'comment-HE382U3-2';
if (document.getElementById(comment_field).value == 'Write a comment...')
    { document.getElementById(comment_field).value = '';}

is not happening because there is no [HTMLInputObject] found in the DOM. Please help. Thanks!

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

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

发布评论

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

评论(1

纸短情长 2024-10-14 07:27:51

实际上可以从动态创建的文本字段中获取当前值吗?

是的。它就像任何其他元素一样。如果它在 DOM 中,则以相同的方式访问它。

验证 comment_field 变量的值。您正在引用不同的函数,因此该变量可能超出范围。

is it actually possible to get the current value from a dynamically created text field?

Yes. It is just like any other element. If it is in the DOM, it is accessed the same way.

Verify the value of the comment_field variable. You're making reference to different functions, so perhaps that variable is out of scope.

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