Fogbugz 如何执行“添加案例”操作? 阿贾克斯?
我真的很喜欢 FogBugz 的“添加案例”按钮,它可以立即添加您在表中输入的文本,并让您能够添加另一个文本。
有人知道它是如何完成的吗? 或者理想情况下,有人有 PHP/MYSQL 系统的片段吗?
I really like how FogBugz has an "Add Case" button where it instantly adds the text you entered into the table, and gives you the ability to add another one.
Does anybody know how it is done? or ideally, does anyone have any snippets for PHP/MYSQL system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 jQuery 可以非常轻松地做到这一点。
当您单击“勾选”时,将提交 AJAX 查询,然后将一个新行添加到表中。
如果您已经拥有用于向 mySQL 数据库添加记录的 PHP 代码,那么只需学习一些 jQuery 即可。
jQuery 网站上有很多教程。 这里是关于基本 AJAX 的很好的教程。
You could do it very easily with jQuery.
When you click the "tick" an AJAX query is submitted, then a new row is added to the table.
If you already have PHP code for adding a record to the your mySQL database it is just a matter of learning some jQuery.
There are lots of tutorials on the jQuery site. Here is a good tutorial on basic AJAX.