<form
name="form" method="post">
如果不填写method的话,默认将以get方式提交。
$.aiax你这里就写错了 是$.ajaxurl:'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'))
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)