douluokuang7184 2016-04-16 18:29
浏览 44

通过复选框启动Ajax

I am facing a great problem . I am working on a project..Online food booking..In this project I want to add menu and their price by selecting their corresponding checkbox..I want to fire ajax when one checkbox is checked. How can I fire Ajax on checkbox checking?

  • 写回答

1条回答 默认 最新

  • douao8204 2016-04-17 02:53
    关注

    You only need to use the "change" function in your checkbox to trigger the function that you want, like this:

    <script>
    jQuery(document).ready(function($) {
        $('#your-checkbox').change(function(e) {
            /* Your ajax call goes here */
        });
    });
    </script>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题