JavaScript

超轻量级php框架startmvc

详解jQuery设置内容和属性

更新时间:2020-08-20 21:18:01 作者:startmvc
一、设置内容以及回调函数方法text()-设置或返回所选元素的文本内容html()-设置或返回所选

一、设置内容以及回调函数

方法

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

例子


$("#btn1").click(function(){
 $("#test1").text("Hello world!");
});//设置文本内容
$("#btn2").click(function(){
 $("#test2").html("<b>Hello world!</b>");
});//设置元素内容
$("#btn3").click(function(){
 $("#test3").val("Dolly Duck");
});//设置值

$("#btn1").click(function(){
 $("#test1").text(function(i,origText){
 return "Old text: " + origText + " New text: Hello world!
 (index: " + i + ")";
 });
});//返回文本内容

$("#btn2").click(function(){
 $("#test2").html(function(i,origText){
 return "Old html: " + origText + " New html: Hello <b>world!</b>
 (index: " + i + ")";
 });
});//返回元素内容

TIPS

回调函数由两个参数:被选元素列表中当前元素的下标,以及原始(旧的)值。然后以函数新值返回您希望使用的字符串。

二、设置属性以及回调函数

方法

attr() - 设置属性值

例子


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

$("button").click(function(){
 $("#w3s").attr({
 "href" : "http://www.w3school.com.cn/jquery",
 "title" : "W3School jQuery Tutorial"
 });
});//设置多个属性

$("button").click(function(){
 $("#w3s").attr("href", function(i,origValue){
 return origValue + "/jquery";
 });
});//回调函数

总代码


<!doctype html>
	<head>
	<title>jq设置内容和属性</title>
	<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
	<script type="text/javascript">
 $(document).ready(function(){
 $("#bt1").click(function(){
 $("#p1").text("hello world1!");
 });
 $("#bt2").click(function(){
 $("#p2").html("<h1>hello world2!</h1>");
 });
 $("#bt3").click(function(){
 $("#t1").val("hello world3!");
 });
 $("#bt4").click(function(){
 $("#p1").text(function(i,origText){
 return "旧文本:"+origText+"新文本:这是新文本(index:"+i+")"
 });
 });
 $("#bt5").click(function(){
 $("#p2").html(function(i,origText){
 return "旧HTML:"+origText+"新HTML:<b>这是新HTML</b>(index:"+i+")"
 });
 });
 $("#bt6").click(function(){
 $("#t1").val(function(i,origText){
 return "旧值:"+origText+"新值:这是新值(index:"+i+")"
 });
 });
 $("#bt7").click(function(){
 $("a").attr("href","https://tieba.baidu.com");
 });
 $("#bt8").click(function(){
 $("a").attr("href",function(i,origValue){return origValue + "/s?wd=1&rsv_spt=1&rsv_iqid=0xbc3b96600002e5f4&issp=1&f=8&rsv_bp=1&rsv_idx=2&ie=utf-8&tn=baiduhome_pg&rsv_enter=1&rsv_sug3=2&rsv_sug1=1&rsv_sug7=100&rsv_sug2=0&inputT=163&rsv_sug4=1686"});
 });
 });
	</script>
	</head>

	<body>
 <input type="button" id="bt1" value="设置文本" "">
 <input type="button" id="bt2" value="设置HTML" "">
 <input type="button" id="bt3" value="设置值" "">
 <p id="p1">这是文本</p>
 <p id="p2">这是HTML</p>
 <p>这是:<input type="text" value="值" id="t1" style ="width:500px"></p>
 <input type="button" id="bt4" value="显示旧/新文本" "">
 <input type="button" id="bt5" value="显示旧/新HTML" "">
 <input type="button" id="bt6" value="显示旧/新值" "">
 <hr><!--以上是设置内容,一下是设置属性-->
 <input type="button" id="bt7" value="改变href值为贴吧" "">
 <p><a id="baidu" href="https://www.baidu.com" rel="external nofollow" target="_blank">百度</a></p>
 <input type="button" id="bt8" value="改变href值为搜索1(回调函数)" "">
	</body>
</html>

以上所述是小编给大家介绍的jQuery设置内容和属性详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

jQuery设置内容和属性 jQuery内容和属性