2011-05-06 71 views
0

我有一個按鈕。當我點擊這個按鈕時,它會顯示一個彈出式模型進行確認。當我點擊OK按鈕時,我想執行兩個操作。第一個操作是:它將從下拉列表中刪除一個選定的項目,並將數據插入到表格中。所以在這裏首先操作是執行意味着它將刪除下拉列表選擇的項目,但數據不會插入到表格中。那麼我怎麼能在一個單擊按鈕上執行兩個操作。請幫幫我。使用JQuery如何在單個按鈕上執行多個操作

回答

0
<script type="text/javascript"> 
    function show_confirm() { 
    var r = confirm("Press a button"); 
    if (r==true) { 
     alert("You pressed OK!"); 
// any number of actions that are to be performed when Ok is clicked can be done here. 
     } 
    else { 
     alert("You pressed Cancel!"); 
     } 
    } 
    </script> 

<input type="button" onclick="show_confirm()" value="Show confirm box" /> 

不過讓我知道你是否需要進一步的幫助。

+0

只是我發送我的代碼給你。請看看它。 var value = $('[id $ = DropDownList2] option:selected')。text(); $( '[ID $ = btn_SwitchOver]')點擊(函數(事件){VAR 消息= 「你想在操作執行開關」。 openConfirmationModal(消息); event.preventDefault(); }); – 2011-05-06 11:14:54

+0

所以這裏openConfirmationModel()函數就在那裏。 – 2011-05-06 11:17:41

+0

function removeValue(win) \t \t {\t \t insertOperationType(groupid,type); ($ ['id $ = DropDownList2] option:selected')。val()); \t \t win.closeModal(); \t \t \t} – 2011-05-06 11:18:11

相關問題