在同一页面中使用 ajax 表单和表格而不需要刷新的最佳方法是什么?
在同一页面中拥有表单和表的最佳方法是什么,其中表单有一个提交按钮(ajaxsubmit),用于将数据保存在数据库中,而表应该显示数据而无需刷新页面?
我尝试调用 $.load 来获取表格,但是由于 $.load 函数在 document.ready 之后完成的问题而出现了一些问题
那么我应该使用 iframe 吗?或者创建一个xml文件并将数据读入表中?
What is the best approach to have a form and a table in the same page, where the form has a submit button (ajaxsubmit) that saves the data in database and table should display the data without the need to refresh the page?
I have tried to call $.load to get the table, but some problems occurred due to the problem that $.load function finishes after document.ready
So shall i use iframe? or create an xml file and read the data into table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 jQuery 的 ajaxForm 和 ajaxSubmit 的解释: http://www.justwebdevelopment.com/blog/ajaxform-and-ajaxsubmit-options/" rel="nofollow">http://www.justwebdevelopment.com/blog/ajaxform-and-ajaxsubmit-options/" justwebdevelopment.com/blog/ajaxform-and-ajaxsubmit-options/
take a look at this explanation of jQuery's ajaxForm and ajaxSubmit: http://www.justwebdevelopment.com/blog/ajaxform-and-ajaxsubmit-options/
要在
$.load()
方法完成后执行代码,您需要将其放在load()
调用的callback
中。例如:
在此处进一步阅读
To execute code after the
$.load()
method has completed you need to place it in thecallback
of the call toload()
.For example:
Further reading here