提交按钮的随机位置

时间:2015-05-09 15:34:18

标签: html forms

我为html表单上的提交按钮的位置生成了2个x和y值的随机值。

如何申请?

我想要的是随机定位提交按钮!!

1 个答案:

答案 0 :(得分:0)

使用.style属性:



var btn = document.getElementById("btn");
btn.style.top = Math.floor((Math.random() * 230) + 1) + "px";
btn.style.left = Math.floor((Math.random() * 200) + 1) + "px";

input[type='submit'] {
       position: absolute;
  }

<input type="submit" id="btn" value="Button!" />
&#13;
&#13;
&#13;