gpt4 book ai didi

JavaScript 如何获取此 html 以读取此 CSS 并将我的脚本组织到表中

转载 作者:行者123 更新时间:2023-11-29 22:02:37 26 4
gpt4 key购买 nike

外观:

enter image description here

我希望它看起来如何:

enter image description here

我有一个 CSS 文件,其中有一个表格,所有表格都井井有条并准备就绪 我的问题是如何让我的脚本使用 CSS 文件中的表格这是我的 CSS 文件:

/*
styles.css
*/

body{
background-color:#cecece;
color:#fff;
font-family: Arial, Tahoma, Sans-Serif;
font-size:1em;
}
h1{
color:#FF8000;
text-align:center;
}
table{
width:95%;
}
caption{
font-size:1.2em;
margin:10px;
color:#FF8000;
}
th{
width:33.333%;
font-size:1.1em;
text-align:left;
color:steelblue;
}
#output{
position:absolute;
width:50%;
height:70%;
top:15%;
left:25%;
margin:0px;
padding:10px;
font-size:.9em;
background-color:#2E2E2E;
color:ivory;
}

这是我调用css的Html文件和我的脚本

<html lang="en">
<head>
<title>Student Grades - [Your Name]</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>

<body>
<h1>Student Grades System</h1>
<div id="output"></div>
<script src="./assignment.js"></script>
</body>
</html>

这是我的 JavaScript,它会打印出所有内容,如果您需要更多脚本,请告诉我

            var mytable = "<table><caption>Grading Results</caption>";
document.write(mytable);
document.write('<td><tr><th>' + "Student"+'</th><th>' + "Mark!" + '</th><th>'+"Grade" + '</th> </tr></td>');
for(var i = 0; i < markArr.length; i++){
document.write(' <tr><td>'+studentArr[i] + space1+markArr[i] + space1+gradeAwarded[i] + '</td> </th> ');
}
document.write(' </tr>');
document.write('<td>'+ "The Highest mark was : "+max+ ''+'</td> </th>');
document.write('<td>' + "The Lowest mark was : "+min+''+'</td> </th>');
document.write('<td>'+ "The Average mark was : "+average+''+'</td> </th>');
document.write('<td>' + "number A grades : "+A+''+'</td> </th>');
document.write('<td>'+ "number B grades : "+B+''+'</td> </th>');
document.write('<td>'+ "number C grades : "+C+''+'</td> </th>');
document.write('<td>'+ "number F grades : "+F+''+'</td> </th>');
document.write('</table>');

最佳答案

试试这个

for循环之前添加下面的代码:

document.write('<table><caption>My Caption</caption>');

在循环之后:

document.write('</table>');

你告诉我的问题发生是因为 <div><table> 之前关闭被创建。试试这个:

<div id="output">
<script src="./assignment.js"></script>
</div>

连同我上面的代码。

希望它有用!

关于JavaScript 如何获取此 html 以读取此 CSS 并将我的脚本组织到表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22777477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com