我为html表单上的提交按钮的位置生成了2个x和y值的随机值。
如何申请?
我想要的是随机定位提交按钮!!
答案 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;