jQuery ajax 插入后渲染新表行
我正在使用 jQuery+webservice 向表中添加新行。我只是感兴趣用数据填充最后插入的行的好方法是什么?
我正在考虑三个选项:
- 重新加载整个页面? 听起来不合逻辑吗
- 使用 updatepanel
- ?以某种方式使用成功返回的数据集//真的不知道该怎么做
我感谢任何帮助
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您希望 Web 服务方法返回一个字符串数组以作为
s
插入,或者您希望返回一个带有属性的 POCO,该属性将为您提供一个可供您使用的 JSON 对象。例如,使用字符串数组方法,如果您在名为 WebService.asmx 的文件中有以下 Web 服务方法:
然后假设页面上存在 id 为“table1”的表,您的 jQuery 可能如下所示
:您还可以通过一系列其他方法来做到这一点。
注意:我的代码都没有经过测试,接下来的几天我也不会来检查。
我建议您查看令人惊叹的 Dave Ward 网站,http://encosia.com - 它有大量关于从 jQuery 代码调用 .Net 中的 Web 服务的有用帖子。
祝你好运!
You want the web service method to return either an array of strings to insert as
<td>s
, or you want to return a POCO with properties that will give you a JSON object you can then use.For example, using the array of strings approach, if you have the following web service method in a file called WebService.asmx:
Then assuming a table on your page with an id of "table1" exists, your jQuery might look like:
There are a stack of other ways you could do it, too.
Note: None of my code has been tested, and I won't be around for the next few days to check in.
I recommend you look at the amazing Dave Ward's site, http://encosia.com - it has heaps of helpful posts about calling web services in .Net from jQuery code.
Good luck!