Jquery ++恢复事件对提交按钮不起作用

时间:2013-02-07 22:48:16

标签: jquery-plugins event-handling jquery

所以我有这样的 html

<input type="submit" id="orderProd" value="Order">

<div id="showOrder" style="display:none;">
    <input type="button" id="continue" value="Continue"/>
</div>

jQuery的:

$("#orderProd").click(function(event) {
    $("#showOrder").show();
    event.pause();
    $("#continue").click(function() {
         event.resume();
    });
});
// so i want to do this. 
  1. 显示showOrder按钮。 (作品)
  2. 一旦他们点击确定..继续上一个被触发的事件。 (不起作用,似乎事件永远不会结束)。
  3. 所以基本上我想让继续按钮充当简历。

0 个答案:

没有答案