get(0).tagName获得作用标签示例代码
2014-10-15来源:易贤网

代码如下:

<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</dd>

<dd>dddd</dd>

</dl>

</div>

更多信息请查看IT技术专栏

2025公考·省考培训课程试听预约报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
推荐信息