动态表单标题

发布于 2024-11-16 05:26:52 字数 238 浏览 1 评论 0原文

这是我的简单代码:

    function save_edit(res,table_color)
    {
        var the_form="details_"+res;
        alert(document.the_form.title.value);
    }

我想做的就是动态放置从中获取“title”值的表单, 但上面的代码抛出语法错误。

我该怎么做?

Here is my simple code:

    function save_edit(res,table_color)
    {
        var the_form="details_"+res;
        alert(document.the_form.title.value);
    }

All I want to do is dynamically put the form from which to fetch the value of "title",
but the above code is throwing a syntax error.

How do I do it?

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

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

发布评论

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

评论(1

罪#恶を代价 2024-11-23 05:26:52

这可能是您想要的

document[the_form].title.value

,但我建议您查看 getElementById ,更重要的是 jQuery。在 jQuery 中你可能会说:

$('form#details_' + res).find('#title').val();

为了实现同样的事情。

This may be what you want

document[the_form].title.value

But I recommend you look in to getElementById and more importantly, jQuery. IN jQuery you might say:

$('form#details_' + res).find('#title').val();

To achieve the same thing.

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