jQuery14 元件選取(html元素+CSS ID)+添加元素

jQuery14 元件選取(html元素+CSS ID)+添加元素

jQuery14 元件選取(html元素+CSS ID)+添加元素

 

資料來源http://www.w3school.com.cn/jquery/index.asp

code2html:http://tohtml.com/

 

<!DOCTYPE html>
<html>
<head>
<title>jQuery 元件選取(html元素+CSS ID)+添加元素</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(){
/*HTML+class作為選擇器*/
$("button.append01").click(function(){
console.log("append01");
$("p").append(" <b>Appended text</b>.");
$("ol").append("<li>Appended item</li>");
});
$("button.prepend01").click(function(){
console.log("prepend01");
$("p").prepend("<b>Prepended text</b>. ");
$("ol").prepend("<li>Prepended item</li>");
});
$("button.after01").click(function(){
console.log("after01");
$("button.after01").before("<b>Before</b>");
});
$("button.before01").click(function(){
console.log("before01");
$("button.before01").after("<i>After</i>");
});
});
</script>
</head>
<body>
<buttontype="button"class="append01">在結尾加入元素-append()</button>
<buttontype="button"class="prepend01">在開頭加入元素-prepend()</button>
<buttontype="button"class="after01">在選中元素之後加入元素-after()</button>
<buttontype="button"class="before01">在選中元素之前加入元素-before()</button>
<p>This is a paragraph.</p>
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
</div>
</body>
</html>



 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *