我有IE和一个JS代码的问题。当IE中的页面加载时,所有链接都变为非活动状态,无法按下。 IE崩溃报告告诉我,问题出在最后一行的那个函数 container.set('html',content); 我使用Joomla 2.5和Virtuemart 2
function addControls() {
var container = document.id('fontsize');
var content = '<h3>'+ fontSizeTitle +'</h3><p><a title="'+ biggerTitle +'" href="#" onclick="changeFontSize(2); return false">'+ bigger +'</a><span class="unseen">.</span><a href="#" title="'+resetTitle+'" onclick="revertStyles(); return false">'+ reset +'</a><span class="unseen">.</span><a href="#" title="'+ smallerTitle +'" onclick="changeFontSize(-2); return false">'+ smaller +'</a></p>';
container.set('html', content);
}
此代码中的问题在哪里。 这是错误的图像。