我无法在mousedownevent上从1-100生成10个随机整数。另外我需要在表格行中显示每一个,我是计算机编程的新手,我不知道我犯的是什么错误。
这是我的代码:
function process() {
'use strict';
var ara = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var index;
var output = '<tr>';
for (var i = 0; i < 1 0; i++) {
index = Math.floor(Math.random() * 100);
output += '<td>' + ara[index] + '</td>';
}
output += '</tr>';
document.getElementById('numbers').innerHtML = output;
}
function init() {
'use strict';
document.getElementById('showarray').onmousedown = process;
} // End of init() function
window.onload = init;
Id号码是表格标签 并且id show数组是我必须单击以获得10个整数的H3标记
这是HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>assignment2.html</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- assignment2.html -->
<h2>10 Random Integers from 1 to 100</h2>
<h3 id='showarray'>Mouse down here to show integers in table below</h3>
<table id="numbers" border="2"></table>
<span id="show5th">The fifth element is ?</span>
<script src="js/assignment2.js"></script>
</body>
</html>
jsfiddle 10
和innerHTML
已修复
答案 0 :(得分:0)
从1到100生成10个randoms数字;
var numbers = [];
while (numbers.length <10) {
// ParseInt for rounding. Real random numbers are 99 starting on 1.
var number = parseInt(Math.random() * 99)+1,10);
// save the number into an array and avoid duplicated.
if (numbers.indexOf(number) === -1 ) {
numbers.push(number);
}
}
显示表格单元格中的数字
如果您使用的是jQuery,这将很容易。
// creates table row element
var row = $('<tr>');
$.each(numbers, function(i) {
// creates new table cell element
var cell = $('<td>');
cell.text(i);
// append cell into row without inserting into the DOM.
cell.append(row);
});
// appends the resulting row and it's content into the DOM element with an id of `#target`
$('#target').append(row);
如果你不使用 jQuery ,你可以将此代码与Xotic提供的代码混合
在mousedown上实现 我使用了点击,但如果你真的需要mousedown,请随意改变它。
将上面的代码包装成2个函数,比如说:
var generateRandomNumbers = function () {
var numbers = [];
while (numbers.length <10) {
var number = Math.ceil(Math.random() * 100);
if (numbers.indexOf(number) === -1 ) {
numbers.push(number);
}
}
return numbers;
}
var appendNumbersToDom(numbers, target) {
// you may want to check for non valid paramenters here
var row = $('<tr>';
$.each(numbers, function(i) {
var cell = $('<td>');
cell.text(i);
cell.append(row);
});
$(target).append(row); }
和来电者
$('#showarray').on('click', function() {
appendNumbersToDom(generateRandomNumbers, '#target');
});
答案 1 :(得分:0)
由于输入了tryToGetProgrammingStraight,我能够发现输出不需要ara。仅仅索引足以产生从1到100的随机数
function process() {
'use strict';
var ara = [1, 2, 3, 4, 5, 6, , 7, 8, 9, 10];
var index;
var output = '<tr>';
//Start of loop
for (var i = 0; i < 10; i++) {
index = Math.floor(Math.random() * 101);
output += '<td>' + +index + '</td>';
}
output += '</tr>';
document.getElementById('numbers').innerHTML = output;
}
function init() {
'use strict';
document.getElementById('showarray').onmousedown = process;
} // End of init() function
window.onload = init;
答案 2 :(得分:-1)
for(var i= 0; i < 1 0; i++) {
应该是for(var i= 0; i < 10; i++) {
1到0之间没有空格
另外,更重要的ara[index]
应为index
,为什么你有ara
?如果它的循环那么
for(var i in ara)
代替for(var i= 0; i < 10; i++) {
无论如何你想要什么,你得到了什么?请澄清。