欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery -----取值赋值的基本方法

程序员文章站 2022-07-13 11:41:48
...

取值

  1. text() - 设置或返回所选元素的文本内容
  2. html() - 设置或返回所选元素的内容(包括 HTML 标记)
  3. val() - 设置或返回表单字段的值

$("#btn1").click(function(){
  console.log("Text: " + $("#test").text());
});
$("#btn2").click(function(){
  console.log("HTML: " + $("#test1").html());
});
$("#btn3").click(function(){
  console.log("Value: " + $("#test2").val());

jQuery -----取值赋值的基本方法
jQuery -----取值赋值的基本方法

获取属性 - attr(),prop()

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

赋值

设置内容 - text()、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 -----取值赋值的基本方法
点击后:
jQuery -----取值赋值的基本方法

设置属性 - attr(),prop()
$("button").click(function(){
  $("#w3s").attr("href","http://www.w3school.com.cn/jquery");
});
//prop()可以获取属性的状态
$("button").click(function(){
  console.log($('input[type=checkbox]').prop('checked',true));
});