复选框 - 使用 jQuery 和 MySQL 选中或取消选中
我目前正在创建一个系统,必须可以选中/取消选中复选框。每次它改变状态时,我都需要 jQuery 对页面进行 AJAX 调用,以更新数据库。
我该怎么做?
I am currently creating a system where it has to be possible to check/uncheck a checkbox. Everytime it changes status I need jQuery to make an AJAX call to a page, that updates the database.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
例如,您可以这样做:
首先您必须查看该复选框是否已选中:
您可以通过 Ajax 加载特定内容:
For example you can do it like this:
First you have to look if the checkbox is checked:
You can load specific content via Ajax:
你卡在哪一点了?你可能应该有这样的东西......
Which bit are you stuck on? You should probably have something like this...
检测复选框是否被选中:
这可以在由“onchange”事件触发的函数中执行。
Detect if checkbox is checked:
This can be executed in a function that is triggered by "onchange" event.
大概是这样的吧?
Something like this probably?
您现在可以拥有多个复选框。
You can now have more than one checkbox.