「jQuery入門」.removeAttr()でhtml属性を削除するサンプル

2017年12月6日

1.JSコード
<script type="text/javascript">
$(document).ready(function(){
$(“button").click(function(){
$(“p").removeAttr(“style");
});
});
</script>

2.htmlコード
<h1>テスト11</h1>
<p style="font-size:120%;color:green">テスト22</p>
<p>テスト33</p>
<button>テスト44</button>

Software

Posted by arkgame