亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        get(0).tagname獲得作用標簽示例代碼

        字號:


            代碼如下:
            <script type=text/javascript src=jquery1.4.js></script>
            <script type=text/javascript>
            $(function(){
            $(.test li,.test dd).click(function(){
            alert('本身為大寫:' + $(this).get(0).tagname + '\n利用tolowercase()轉(zhuǎn)換為小寫:' + $(this).get(0).tagname.tolowercase() + '\n利用touppercase()轉(zhuǎn)換為大寫:' + $(this).get(0).tagname.touppercase());
            })
            });
            </script>
            <div class=test>
            <ul>
            <li>lili</li>
            <li>lili</li>
            </ul>
            <dl>
            <dd>dddd</dd>
            <dd>dddd</dd>
            </dl>
            </div>