我在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); }
});