我无法将下面的最终函数displayLetter(a,b,c,d,e,f,g)放在一起,并使用variableTest()中的数组元素和变量写入innerHTML中的表。我知道我需要使用.length并确定我需要多少个单元格。 W3C只让我到目前为止。谢谢你的帮助!
<html>
<head>
<title>
</title>
<script>
</script>
</head>
<body>
<h1>TEST THIS SCRIPT</h1>
<table border="1">
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
<th>F</th>
<th>G</th>
</tr>
<a href="add data" id="reload">Add Employee</a>
</body>
<html>
MY JS:
function addData()
{
var testarray = new Array();
testarray[0] = window.prompt("Enter a letter", "z");
variableTest(x, y);
displaySalary(a, b, c, d, e, f, g);
}
function variableTest(x, y)
{
a=1;
b=2;
c=3;
d=4;
e=5;
}
displayLetter(a, b, c, d, e, f, g)
{
// Code to write the variables to the table
}
答案 0 :(得分:0)
我不太确定你要做什么,但很少有东西弹出来。我建议你在任何函数之外声明var testarray = new Array();
。然后在
function addData()
{
testarray.push (window.prompt("Enter a letter"));
}
variableTest()应该做什么?
调用addDate时,是否应该将提示文本添加到该表中的单元格中?