2013-08-07 83 views
1

我在我的視圖中創建了一個窗體,它調用控制器中的某些方法。 我想要做我的提交按鈕功能兩件事情:一個按鈕上的兩個不同動作

使用Ajax功能,顯示在同一頁面的輸出,

獲取使用$這 - (即顯示輸出相同的方法)的數據>輸入 - >後功能

+0

使用'Ajax'或使用傳統的'get','post'函數。 – Deadlock

+0

我解決了我的問題。我不得不使用iframe。謝謝。 – Aman

回答

0

你可以使用AJAX是這樣的:

$.ajax({ 
    url: "Here is the url path", 
    type: "GET", 
    data: {}, 
    beforeSend:function(){ 
     //do something like loading image 
    }, 
    success:function(response){ 
     alert(response); //do something 
    }, 
    error:function(e){ 
     alert("something wrong"+e); 
    } 
}) 
+0

在beforeSend函數中,我想調用我的控制器中的方法,並且該方法使用this-> input-> post()使用表單值,如何使用this-> input-> post獲取值? – Aman

+0

@Aman替換類型:GET鍵入:POST然後你就可以得到post中的值。 –

+0

謝謝我解決了我的問題。我不得不使用iframe – Aman

1

你可以寫上你的按鈕......兩個功能對於type="button"

<input type="button" value="Don't show this again! " onclick="function1();function2();" /> 
相關問題