정규식으로 태그안의 style 의 width, height 를 삭제할 수있을까요?
본문
말그대로
<td style="width:100px;height:30px;text-align:center;">
aa
</td>
가 있으면
<td style="text-align:center;">
이렇게 정규식으로 가능할까요?
답변 1
<script>
$("td").css('width','');
$("td").css('height','');
</script>
안되시면
https://www.codingfactory.net/10265
참고하시면 될거 같네요
!-->
답변을 작성하시기 전에 로그인 해주세요.