- 主题:问个关于jquery库的问题
在jquery中有这么一行语句:
// These attributes require special treatment
var special = /href|src|style/.test( name );
/href|src|style/.test是啥意思啊?这个test到底是谁的方法?谢谢
--
FROM 211.88.25.*
正则
【 在 offer2job (job hunting) 的大作中提到: 】
: 在jquery中有这么一行语句:
: // These attributes require special treatment
: var special = /href|src|style/.test( name );
: ...................
--
FROM 222.129.36.*
我忘了test是它的方法,呵呵,谢谢
【 在 tengda (爱你) 的大作中提到: 】
: 正则
--
FROM 211.88.25.*
/.../ = new RegExp
有点像
{...} = new Object
[] = new Array
之类的。
【 在 offer2job (job hunting) 的大作中提到: 】
在jquery中有这么一行语句:
// These attributes require special treatment
var special = /href|src|style/.test( name );
/href|src|style/.test是啥意思啊?这个test到底是谁的方法?谢谢
--
FROM 221.223.103.*