如何在这个Json上使用$ http和$ compile

时间:2017-12-30 06:22:40

标签: angularjs json

我在onclick上写了这个jquery。我希望Json这样做,但是我无法编译代码。

这是我努力的结果:

function PostEndid (y) {
    var getcityid=$(y).attr('data-id');
    $(".EndCityID").attr("value", getcityid);
     $http({
       url: 'test-js.bc',
       type: 'post', 
       data : {
        StartCityID: $(".StartCityID").val(),
        EndCityID : $(".EndCityID").val(),
       },
      success:function(response){ $(y).closest("tr").find(".airlinename").empty().html($compile(response))(scope); }
     });

0 个答案:

没有答案