亲宝软件园·资讯

展开

get(0).tagName获得作用标签示例代码

人气:0

复制代码 代码如下:

<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()转换为小写:' + $(this).get(0).tagName.toLowerCase() + '\n利用toUpperCase()转换为大写:' + $(this).get(0).tagName.toUpperCase());
})
});
</script>

<div class="test">
<ul>
<li>lili</li>
<li>lili</li>
</ul>

<dl>
<dd>dddd<https://img.qb5200.com/download-x/dd>
<dd>dddd<https://img.qb5200.com/download-x/dd>
<https://img.qb5200.com/download-x/dl>
</div>

加载全部内容

相关教程
猜你喜欢
用户评论