清除這個父類的html,也就是說刪除了這個input
$(this).html("");
創建要的label
var newLabel = "<label></label>";
再次替換html
$(this).html(newLabel);
這個應該是壹個大概的思路了
清除這個父類的html,也就是說刪除了這個input
$(this).html("");
創建要的label
var newLabel = "<label></label>";
再次替換html
$(this).html(newLabel);
這個應該是壹個大概的思路了