ID属性值为小数

获取带有.的id值

<h1 id="123.45">dom对象</h1>

  

<script>
$('#123\\.45').attr('id') //123.45
</script>

  

<script>
$('#123.45').attr('id')   //undefined
</script>

  

posted @ 2016-04-18 12:29  一人的代码  阅读(173)  评论(0编辑  收藏  举报