无法将动态 html 绑定到 post 上的 spring 命令对象?

发布于 2024-10-18 11:48:03 字数 236 浏览 4 评论 0原文

我有阿贾克斯和jquery 代码获取 html 并使用 div 标签附加到原始页面中的现有 html。

新的 html 元素包括文本框、下拉框。

在页面提交时,我在 spring 命令对象中没有看到这些值。

我尝试调试,我看到 dom 对于添加元素的表单变量具有空值。

如何将这些元素绑定到命令对象?

我花了几个小时解决这个问题,但没有运气......

请帮助我

I've ajax & jquery code to get html and append to existing html in original page using div tags.

New html elements include text boxes, dropdown boxes.

On page submit, I don't see these values in my spring command object.

I tried to debug, I see the dom has empty value for added elements' form variable.

How to bind these elements to the command object?

I've spent few hrs resolving this, bt no luck...

Please help me

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

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

发布评论

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

评论(2

一个人的旅程 2024-10-25 11:48:03

我认为您的输入名称应该与模型类中声明的变量名称(相应的变量)匹配。例如,如果您有输入文本框名称是textBox1,则在模型中你应该有..private String textBox1="";

如果不是这种情况,那么发布一些你的代码..

i think your input name should match with your variable name(corresponding variables) declared in your model class..for example if you have input text box name is textBox1 then in model you should have..private String textBox1="";

if it's not the case then post some of your code..

败给现实 2024-10-25 11:48:03

感谢您的回复..Vivek 和 gowri...

我能够解决这个问题...它与浏览器有关...它在 Firefox 中不起作用,但在 IE 中运行良好..(Firefox 中的 html 格式问题)我想)

并且,经过几次尝试和错误......我也能够使其在 Firefox 中工作......

当我在主 html 表标签中使用我的表单标签时,它不起作用。我将表单标签移到了表格标签上方...并且它在 Firefox 和 IE 中都有效..

Thanks for responding.. Vivek and gowri...

I was able to resolve this isssue...it was related to Browser...It didn't work in Firefox, but worked good in IE.. (html format issue in Firefox I suppose)

And , with few trial and err..I was able to make it work in Firefox too...

When I've my form tag with in main html table tag, it didn't work. I moved my form tag above table tag...and it worked both in Firefox and IE..

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