我继承了公司网站和匆忙拼凑的 CMS。今天遇到了我的第一个错误,我很难过。
CMS 使用我以前从未听说过的 markItUp!。问题是这样的:每当有人CTRL在受影响的文本区域中键入字符时,jQuery 就会抛出一个可爱的Syntax error, unrecognized expression: [ctrl character]
异常。
我在看markItUp!keyPressed 函数,在这种情况下,我看不出它会如何工作。要使用快捷方式,您必须在它们前面加上CTRL,但是在您按下之后 keyPressed 总是会触发,在集合中CTRL找不到CTRL,因此在Sizzle.filter
.
CTRL以 textarea 为焦点按下,然后:
//jquery.markitup.js
function keyPressed(e) {
shiftKey = e.shiftKey;
altKey = e.altKey;
ctrlKey = (!(e.altKey && e.ctrlKey)) ? e.ctrlKey : false;
if (e.type === 'keydown') {
if (ctrlKey === true) {
//Line below attempts to find an anchor tag with accesskey CTRL character
li = $("a[accesskey="+String.fromCharCode(e.keyCode)+"]", header).parent('li');
//SNIP
}
}
}
//jquery-1.5.js
Sizzle.filter = function( expr, set, inplace, not ) {
var count = 0;
var match, anyFound,
old = expr,
result = [],
curLoop = set,
isXMLFilter = set && set[0] && Sizzle.isXML( set[0] );
//expr = the CTRL character, set = the markItUp! default set
while ( expr && set.length) {
for ( var type in Expr.filter ) {
if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {
//SNIP
}
}
// Improper expression
if ( expr === old ) {
if ( anyFound == null ) {
Sizzle.error( expr );
} else {
break;
}
}
old = expr;
}
return curLoop;
};
Sizzle.error = function( msg ) {
throw "Syntax error, unrecognized expression: " + msg;
};
我在这里想念什么?