jquery mobile popup - 检索数据的更好方法?

时间:2013-11-15 14:21:35

标签: javascript jquery-mobile

我正在使用这个简单的弹出窗口正确初始化以及相应的popupafterclose处理程序,包含在内容div中。它只是有效。 -

<div id="start-activity-popup" data-role="popup">
    here is popup.
    <button id="start">Start</button>
    <button id="cancel">Cancel</button>
</div>

但是如果我必须从弹出窗口中检索值或知道哪个按钮 被按下了 - 我是否需要为每个处理器编写另一个处理程序 - 启动和取消按钮? 还有更好的方法吗?

1 个答案:

答案 0 :(得分:0)

你可以写一个处理程序:

$("#start-activity-popup button").click(function() {
    var clicked = this.id; //this is the id of the clicked button
    //do stuff
});