微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

个人笔记之jQuery的获取内容或属性

个人笔记之jQuery的获取内容属性

<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta http-equiv="X-UA-Compatible" content="IE=edge">
    <Meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
    <p id="test1">超级变变变</p>
    <p id="test2">大大变</p>
    <button id="btn1">显示/设置文本</button>
    <button id="btn2">显示/设置HTML</button>
    <button id = "btn3">显示/设置值</button>
    <input type="text" id="inpu" value="输一哈值嘛">
    <p><a href="###" id="href"></a></p>
    <button id="btn4">显示href值</button>
    <p><a href="http://www.runoob.com" id="runoob">菜鸟教程</a></p>
    <button id="btn5">修改href和title</button>
    <script>
        $(document).ready(function(){
            $("#btn1").click(function(){
                $("#test1").text(function(i,origText){
                    return "旧文本:" +origText+ "    新文本:头秃了,也变强了(index:"+i+")";
                });  
            });
            $("#btn2").click(function(){
                $("#test2").html(function(i,origText){
                    return "旧html:" +origText+"<br>"+ "新html:<b>更强了</b>(index:"+i+")";
                });   
            });
            $("#btn3").click(function(){
                $("#inpu").val("莫憨起,喊你输一哈值");
            });
            $("#btn4").click(function(){
                alert("href值为:"+$("#href").attr("href"));
            });
            $("#btn5").click(function(){
                $("#runoob").attr({
                    "href":"http://www.runoob.com/jquery",
                    "title":"jQuery 教程"
                });
                titl = $("#runoob").attr('title');
                $("#runoob").html(titl);
            });
        });
    </script>
</body>
</html>

.text() 改文本
.val()改输入值 和 input 结合使用
.html() 引入或展示相关标签
.attr(“url”)掌握它的修改链接以及名字

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐