我在视图中创建了一个在控制器中调用某个方法的表单。 我想在提交按钮功能上做两件事:
使用Ajax功能在同一页面上显示输出
使用$ this-> input-> post function
获取数据(使用显示输出的相同方法)答案 0 :(得分:1)
您可以在按钮上编写两个功能......对于type="button"
<input type="button" value="Don't show this again! " onclick="function1();function2();" />
答案 1 :(得分: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);
}
})