1

我无法在 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 显示数组是 H3 标签,我必须单击才能获取 10 个整数

这是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

4

3 回答 3

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;
于 2013-09-02T03:02:33.707 回答
0

生成 10 个从 1 到 100 的随机数;

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 提供的代码混合使用

为了让它在鼠标按下时发生, 我使用了点击,但如果你真的需要鼠标按下,你可以随意改变它。

将上面的代码包装成 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');
});
于 2013-09-01T05:53:00.440 回答
-1

for(var i= 0; i < 1 0; i++) {应该是for(var i= 0; i < 10; i++) {1 和 0 之间没有空格

还有更重要的ara[index]应该是index,你为什么还要拥有ara?如果它的循环那么

  1. 这是不必要的
  2. 然后使用for(var i in ara)而不是for(var i= 0; i < 10; i++) {

无论如何,你想要什么,你得到了什么?请说清楚。

于 2013-09-01T05:37:17.123 回答