Мне нужно вывести в таблицу значения x, y и куда идет кнопка - PullRequest
0 голосов
/ 11 апреля 2020

Мне нужно вывести в таблицу значения x и y и куда пойдет кнопка.
а как решить? Я попытался создать функцию с именем createTable(), но она не работает.

JavaScript код:

function moveBtn() {
var $button = $("#btn");
$button.fadeOut(1000,function(){
    var maxLeft = $("#sq").innerWidth()- $button.width();
    var maxTop = $("#sq").innerHeight() - $button.height();
    var leftPos = Math.floor(Math.random() * (maxLeft));
    var topPos = Math.floor(Math.random() * (maxTop));
    $button.css({ left: leftPos, top: topPos }).fadeIn(1000);
    console.log('x: ' + leftPos + ' y: ' + topPos);
    posx.push(leftPos);
    posy.push(topPos);
    return leftPos, topPos;

});
}

function createtable(posx,posy) {
document.getElementById("#ax").value = posx[i];

}

var posx = new Array();
var posy= new Array();

И его HTML для генерации таблицы:

<body>
<table align="left" style="padding-left: 900px;" id="tables">
    <thead>
        <tr style="vertical-align: text-top;">
        <th style="padding: 15px;">&nbsp&nbsp&nbsp X &nbsp&nbsp&nbsp</th>
        <th style="padding: 15px;">&nbsp&nbsp&nbsp Y &nbsp&nbsp&nbsp</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td id="ix"><p id="ax"></p></td>
            <td id="iy"><p></p id="ay"></td>
        </tr>
    </tbody>
</table> 
<div class="square" id="sq">
    <button id="btn" class="btn btn-primary btn-sm" onclick="pressButton();">HazClick!</button>
</div>

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...