《Webpack4.0从入门到高手项目实战》最新

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");
});//设置值
1
2
3
4
5
6
7
8
9
$("#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 + ")";
  });
});//返回元素内容
1
2
3
4
5
6
7
8
9
10
11
12
13
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"
  });
});//设置多个属性
1
2
3
4
5
6
7
8
9
10
$("button").click(function(){
  $("#w3s").attr("href", function(i,origValue){
    return origValue + "/jquery";
  });
});//回调函数
1
2
3
4
5
总代码
<!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" target="_blank">百度</a></p>
        <input type="button" id="bt8" value="改变href值为搜索1(回调函数)" "">
    </body>
</html>

猜你喜欢

转载自blog.csdn.net/q601059467/article/details/90030082