调用php文件的按钮调用JQuery函数

时间:2018-10-17 10:23:02

标签: php jquery

=AVERAGEIFS(V186:V891,J186:J891,H164,K186:K891,"<>Infrastructure")

该功能还可以,echo会在网页上进行“打印”,但是几乎每次都会消失。 有什么想法吗?

3 个答案:

答案 0 :(得分:0)

我认为您没有正确使用ajax。试试这个

onStoped()

答案 1 :(得分:0)

这是您应该尝试的ajax。希望对您有帮助。

$('#boutonCreerPlat button').click(function(){


        $('#plat').html('');// clear the #plat value first
        $.ajax({
            url: "plat.php",
            type: 'POST',
            data: 'string',
            dataType: 'html'
        })
        .done(function(data){
            //console.log(data);
            $('#plat').html(''); // blank before load.
            $('#plat').html(data); // load here
        })
        .fail(function(){
            $('#plat').html('Something went wrong, Please try again...');
        });
    });

答案 2 :(得分:0)

<form role="form" action="form.php">
            <div class="box-body">
                <div class="form-group">
                    <label for="exampleInputEmail1">Date</label>
                    <input type="text" name="date_menu" class="form-control" id="exampleInputEmail1" placeholder="Date repas">
                </div>
                <div class="form-group">
                    <label for="exampleInputPassword1">Heure</label>
                    <input type="text" name="heure_menu" class="form-control" id="exampleInputPassword1" placeholder="Heure repas">
                </div>
                <hr>
                <button class="btn btn-primary" id="boutonCreerPlat">Ajouter un plat | +</button>
                <div id="plat"></div>
            </div><!-- /.box-body -->

            <div class="box-footer">
                <input style="margin-top:3vh;" type="submit" class="btn btn-primary" value="Submit">
            </div>
        </form>

这是您要求转载的html代码