我正在使用以下脚本开发一个项目。它在 jquery-1.7.2.js 上运行良好。升级到 jquery-1.10.2.js 后,以下错误开始在 chrome 中显示:
未捕获的错误:语法错误,无法识别的表达式:#privacy.t.do?...
任何人都可以帮我解决这个问题。提前致谢。
这是代码:
var staticSnippet = ($('#'+action).length > 0),
snipholderid = 'snipholder',
snipidref = '#'+snipholderid;
if(staticSnippet) {
// Check the content to see if there's a header. Need
// to check this before we display the dialog box.
if($('#'+action).find('h2.diagheader').length > 0) {
_diagProps.title = $('#'+action).find('h2.diagheader>span').html();
}
}