我正在将旧版本的jQuery(1.7.2)升级到较新的版本,并且在我不明白的声明中将其炸毁:
# regardless of whether topic branches from master commit A or C:
git checkout topic
git rebase --onto <commit-B> master
它爆炸了:$("select#searchtype[not(onchange)]", $criteria).change(function () {
// do stuff
}
。
我假设,错误涉及Error: Syntax error, unrecognized expression: select#searchtype[not(onchange)]
。这是什么意思?更重要的是,如何将其升级到当前版本。