我在 ajax 成功函数中有这段代码。我想改变字体大小。我需要在css中做吗?我该如何申报?如果我想在 ajax 中做类似列表的事情怎么样。那可能吗?因为如果它在列表中,它将在方框中。有什么建议吗?
html = '<h1 align=center>#######################################</h1>';
html += '<h1 align=center> Course Details </h1>';
html += '<h1 align=center>#######################################</h1>';
html += '<h3><br>' +json_results.rows[courseId].courseName+'</br></h3>';
html += '<br> Registration # : ' + json_results.rows[courseId].regNo+'</br>';
html += '<br> Status : ' + json_results.rows[courseId].regStatus+'</br>';
html += '<br> Location : ' + json_results.rows[courseId].courseLoc+'</br>';
html += '<br> Start Date : ' + json_results.rows[courseId].startDate+'</br>';
html += '<br> Registered Person : ' + json_results.rows[courseId].fullName+'</br>';
html += '<br> Rate : ' + json_results.rows[courseId].rate+'</br>';