我正在尝试调试以 html4.01 作为其 doctype 的现有页面,并尝试在启用 html5 的浏览器中使用它。将旧网站移植到启用 html5 的浏览器时,最好采取哪些步骤。目前我在显示在脚本内的函数中调用的图像时遇到问题...... JS 都在网页之外并且正在被引用......显示了一个片段,这里用一个单选按钮检查字段替换选择了不正确的图像/选择了正确的图像。
if (bAnswerOnceOnly)
{
//show selected not correct icon, and change cursor to default so that it shows that the check box
//is not clickable.
replacementHTML = "<img border='0' src='../cImages/sg_checki.gif' style='cursor:default'>";
}
else
{
//use this code instead of the above to reset graphic if we allow users to deselect the selected incorrect.
replacementHTML = "<img border='0' onClick='private_ResetGraphics(" + gMC[i].id + ");' src='../cImages/sg_checki.gif'>";
}
谢谢, hrg