码迷,mamicode.com
首页 > Web开发 > 详细

Jquery选择器特殊字符问题

时间:2016-05-04 20:44:52      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

场景: $("#" + AAA + ""),AAA代表某表单ID

当AAA为普通字符串时,ok;

当AAA含有特殊符号时(eg:a.b),获取不到该对象;

原因:特殊符号会进行转义,上面那种方式就无法获取的该ID。

// Does not work:
$( "#some:id" )
// Works!
$( "#some\\:id" )
// Does not work:
$( "#some.id" )
// Works!
$( "#some\\.id" )

解决:
The following function takes care of escaping these characters and places a "#" at the beginning of the ID string:
function jq( myid ) {
return "#" + myid.replace( /(:|\.|\[|\]|,)/g, "\\$1" );
}
The function can be used like so:
$( jq( "some.id" ) )
 
 
http://learn.jquery.com/using-jquery-core/faq/how-do-i-select-an-element-by-an-id-that-has-characters-used-in-css-notation/

Jquery选择器特殊字符问题

标签:

原文地址:http://www.cnblogs.com/zhilianghunag/p/5459452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!