一个按钮上有两个不同的动作

时间:2013-08-07 06:32:53

标签: ajax codeigniter jquery codeigniter-2

我在视图中创建了一个在控制器中调用某个方法的表单。 我想在提交按钮功能上做两件事:

使用Ajax功能在同一页面上显示输出

使用$ this-> input-> post function

获取数据(使用显示输出的相同方法)

2 个答案:

答案 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);
    }
})