动态表单标题
这是我的简单代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是您想要的
,但我建议您查看 getElementById ,更重要的是 jQuery。在 jQuery 中你可能会说:
为了实现同样的事情。
This may be what you want
But I recommend you look in to
getElementById
and more importantly, jQuery. IN jQuery you might say:To achieve the same thing.