Posted in Javascript onOctober 08, 2014
<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>
get(0).tagName获得作用标签示例代码
- Author -
whsnow声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@