PHP+Ajax用POST方法提交的数据,PHP页面收不到

PHP+Ajax用POST方法提交的数据,PHP页面收不到,第1张

要设置form的提交方式,一般有两种方式get和post默认的是get

<form

name="form" method="post">

如果不填写method的话,默认将以get方式提交。

$.aiax你这里就写错了 是$.ajax

url:'CH_EN.php&cste='+language,这里又错

url:'CH_EN.php?cste='+language,

$('#language').blur(function(){

var language = $(this).val()

alert(language)

$.ajax({

type:'get',

url:'CH_EN.php?cste='+language,

success:function(rep){

alert(rep.status)

}

})

})

})

CH_EN.php

<?php

header("Content-type: text/jsoncharset=utf-8")

$cste = isset($_GET['cste']) ? $_GET['cste'] : 'CH'

echo json_encode(array('code'=>$cste,'status'=>'y'))

?>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10056757.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存