0

我有一个带有下拉列表的表单。我将在更改下拉列表时,应用程序将请求作为get方法发送到操作。

我的js函数是:

$('#SiteWidget_type').change(function(){
    $.ajax({
       type: 'GET',
        url: "<?php echo CController::createUrl('siteWidget/au'); ?>" ,
        data: {id: $(this).val()},
        success:function(msg){
                    $('#W_1_layout').html(msg);
                  },
       error: function() { 
             //alert(error);
        },

      dataType:'html'
  });

});

但是两个请求已提交执行,我不知道为什么 萤火虫截图

4

0 回答 0