谁能解释为什么这会在 IE7 中引发错误?这表明错误发生在“var newStr.....”行上
它不会在任何其他浏览器中发生。
$(document).ready(function() {
$('a[onclick*="_self"]').each(function() {
var newOnclick = $(this).attr('onclick');
var newStr = newOnclick.replace('_self','_parent');
$(this).attr('onclick', newStr);
});
});