jquery id选择器 id带"."问题

例如控件ID为user.id

使用$("#user.id")不能得到正确的结果

必须使用\\转义

即$("#user\\.id")