jQuery04 元件選取+修改元件的CSS的設定值-改變背景顏色
jQuery04 元件選取+修改元件的CSS的設定值-改變背景顏色
資料來源:http://www.w3school.com.cn/jquery/index.asp
code2html:http://tohtml.com/
<!DOCTYPE html>
<html>
<head>
<title>jQuery 元件選取+修改元件的CSS的設定值-改變背景顏色</title>
<!--資料來源 http://www.w3school.com.cn/jquery/index.asp-->
<scriptsrc="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
/*透過jQuery來修改元件的CSS的設定值-改變背景顏色*/
$("button").click(function(){
$("p").css("background-color","red");
});
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<buttontype="button">Click me</button>
</body>
</html>