• jquery——属性操作、特殊效果


    1. attr()、prop() 取出或者设置某个属性的值

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>jquery 属性操作</title>
        <script type="text/javascript" src="jquery-1.12.4.min.js"></script>
        <script type="text/javascript">
            $(function(){
                //
                alert($('.box').html());
                //
                $('.box').html('<a href="https://www.baidu.com">百度</a>');
                //
                $('.box').attr({title:'这是个啥?'});
                //
                alert($('.box').attr('class'));
                //
                alert($('#check').prop('checked'));
                //
                $('#check').prop({checked:true});
    
            })
        </script>
    </head>
    <body>
        <div class="box">这是一个div</div>
        <input type="checkbox" name="" id="check">多选
    </body>
    </html>

    2. text() 取出或设置text内容,去除其中的标签;而html()取出标签中的内容,会包含子标签。

    特殊效果:

  • 相关阅读:
    POJ
    POJ
    操作系统
    POJ
    POJ
    codeforces Educational Round 89
    codeforces Round 647(div. 2)
    codeforces Educational Round 88
    后缀自动机简单总结
    dsu on tree 简单总结
  • 原文地址:https://www.cnblogs.com/gaoquanquan/p/9205776.html
Copyright © 2020-2023  润新知