在JS中调用PHP函数

时间:2016-04-19 13:45:13

标签: javascript php ajax

我想在JS函数中调用一个php函数,我的php函数使用输入作为参数并在以下位置推送返回的值: index.html:

<input type="text" name="my_value">
<button type="button" name="confirm" onclick="validate()">Submit</button>

my_script.JS:

    function validate() {
        var errors = [];
        //here I want to call check function using the input my_value
    }

test.php:

function check($my_value){
   //some long test on $my_value{
        return "valid";
    }else{
        return "not valid";
    }
}

如何在我的验证JS函数中调用它?

0 个答案:

没有答案