jQuery基本整理2

jQuery基本整理<2>

@[基本實例|基於bootstrap框架]css


jQuery HTML

jQuery獲取

三個簡單實用的用於 DOM 操做的 jQuery 方法:html

  • text() - 設置或返回所選元素的文本內容
  • html() - 設置或返回所選元素的內容(包括 - HTML 標記)
  • val() - 設置或返回表單字段的值
$("#btn1").click(function(){
  alert("Text: " + $("#test").text());
});
$("#btn2").click(function(){
  alert("HTML: " + $("#test").html());
});
$("#btn1").click(function(){
  alert("Value: " + $("#test").val());
});

jQuery attr() 方法用於獲取屬性值。java

$("button").click(function(){
  alert($("#w3s").attr("href"));
});

jQuery設置

咱們將使用前一章中的三個相同的方法來設置內容:jquery

  • text() - 設置或返回所選元素的文本內容
  • html() - 設置或返回所選元素的內容(包括 HTML 標記)
  • val() - 設置或返回表單字段的值
$("#btn1").click(function(){
  $("#test1").text("Hello world!");
});
$("#btn2").click(function(){
  $("#test2").html("<b>Hello world!</b>");
});
$("#btn3").click(function(){
  $("#test3").val("Dolly Duck");
});

jQuery attr() 方法也用於設置/改變屬性值。bootstrap

$("button").click(function(){
$("#w3s").attr("href","http://www.w3school.com.cn/jquery");
});

jQuery添加元素

jQuery append() 方法在被選元素的結尾插入內容app

$("p").append("Some appended text.");

jQuery prepend() 方法在被選元素的開頭插入內容框架

$("p").prepend("Some prepended text.");

jQuery after() 方法在被選元素以後插入內容。
jQuery before() 方法在被選元素以前插入內容。code

$("img").after("Some text after");

$("img").before("Some text before");

jQuery刪除新元素

jQuery remove() 方法刪除被選元素及其子元素htm

$("#div1").remove();

jQuery empty() 方法刪除被選元素的子元素

$("#div1").empty();

jQuery CSS

  • addClass() - 向被選元素添加一個或多個類
$("button").click(function(){
  $("h1,h2,p").addClass("blue");
  $("div").addClass("important");
});

removeClass() - 從被選元素刪除一個或多個類

$("button").click(function(){
  $("h1,h2,p").removeClass("blue");
});

toggleClass() - 對被選元素進行添加/刪除類的切換操做

$("button").click(function(){
  $("h1,h2,p").toggleClass("blue");
});

css() - 設置或返回樣式屬性

相關文章
相關標籤/搜索