拼接字符串 传参数


传两个参数

$("#houseDiv_"+objectId).html("");




function removeHouse(objectId, favoriteType){
          //取消收藏
          $.ajax({
              url    : "${ctx}/myFavorite/removeFromMyFavorite",
              type : "post",
              dataType : "json",
              async : true,
              data : {
                  objectId : objectId,
                  favoriteType : favoriteType
              },
              success : function(data){
                   if(data.removeFlag=="1"){
                      $("#houseDiv_"+objectId).html("");
                      
                  }
              }
              
          });
      }

你可能感兴趣的:(jquery)