2012-02-16 2 views

답변

1

예 :

당신이 그것을 할 수있는 많은 방법이있다
$('#footright').text($('#footright').text()); 
0
$("#footright>p").replaceWith(function() { return $(this).contents(); }); 
7

. 아마와 함께 가고 싶어요 :

​$('#footright > p').contents().unwrap();​​​​​​​​​ 
-1

당신은 갈 수 있습니다 jQuery로 DOM을 조작

$('#footright > p').html(""); 
관련 문제