复制代码 代码如下: <br /> $(function(){<br /> $(".test li,.test dd").click(function(){<br /> alert('本身为大写:' + $(this).get(0).tagName + '\n利用toLowerCase()转换为小写:' + $(this).get(0).tagName.toLowerCase() + '\n利用toUpperCase()转换为大写:' + $(this).get(0).tagName.toUpperCase());<br /> })<br /> });<br /> lili lili dddd dddd