这是我使用 zendFramwork1.2 的代码
$("#cboCateMain1").change(function(){
var id=$(this).val();
var dataString = 'catmainid='+ id;
$.ajax({
type: "GET",
url: "<?php echo $this->baseUrl ();?>/<?php echo $this->translate('lang')?>/<?php echo $this->controller?>/catemainindex",
data: dataString,
dataType: 'json',
cache: false,
contentType: "application/json;charset=utf-8",
beforeSend: function() {
},
timeout: 1000000,
error:function(xhr, status, error) {
alert('Error: Message->'+ xhr.status+ ' - >'+ error+"->"+xhr);
},
success: function(data){
alert(data);
}
});
});
但我得到了像!
有问题的任何想法!我正在寻找您的回复。谢谢