答案 0 :(得分:0)
document.write
会删除页面上的所有内容,包括您的样式。您必须在document.write
中加入样式。因此,您可能必须要做类似的事情
function disptayQuestion(questionIndex) {
var q = questions [questionlndex] ;
document.write('<link rel="stylesheet" type="text/css" href="yourstyle.css">');
document.write( (questionlndex + 1) + "." + q.question + "<br>" );
document.write(q.optionA + "<br>");
document.write(q.optionB + "<br>");
document.write(q.optionC + "<br>");
document.write(q.optionD);
}