dougu5886 2013-05-11 02:47
浏览 29

一种为多种功能使用相同按钮的方法[关闭]

What I am trying to do is create a notes page, that dynamically retrieves notes from a database. I have it all in a table, with a few columns, but the main feature I need to function, is my problem. I have a series of buttons, each with the same name, but all of them need to open a different note. I tried to use Jquery and Ajax to do it, but I've come up empty. Is there any way to do what I am trying to do?

  • 写回答

1条回答 默认 最新

  • duanjianxiu9400 2013-05-11 03:02
    关注

    You could add data to each button, using a data attribute which looks like this: data-{index}="{value}" or to see it more clearly, in the element itself:

    <button class="button" data-action="note-1">Save</button>
    <button class="button" data-action="note-2">Save</button>
    

    And then process it using jQuery like so:

    $('.button').on('click', function () {
        var $this = $(this),
            action = $this.data('action');
        if (action === 'note-1') {
            //load note 1
        }
        // something similar for other notes
    });
    

    Here is a relavant jsFiddle http://jsfiddle.net/E8uZb/

    评论

报告相同问题?

悬赏问题

  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测