在 ASP.NET MVC 中的表单验证触发器后维护使用 jquery 制作的动态 HTML
我有这个表,我可以在其中通过 jquery 单击事件生成行。
是否可以在页面模型验证触发后仅使用基本的 jquery 库保留我的动态 html,或者我应该在我的 MVC 项目中使用其他东西,如 ajax 或类似的东西?
I have this table in which I am able to generate rows for through a jquery click event.
Is it possible to keep my dynamic html after the pages model validation triggers with just the basic jquery library or should I use something else like ajax or the like in my MVC project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是在提交表单后保持该状态,则需要以某种方式保存该 HTML 片段,例如保存在 $_SESSION 变量中,然后在下一页上重新加载它。
If you mean, keep that state after a form has been submitted, you'll need to save that HTML fragment somehow e.g in a $_SESSION variable and then reload it on the next page.