我想在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函数中调用它?