2015-05-09 131 views
-1

我已經爲html表單上的提交按鈕的位置生成了2個隨機值。提交按鈕的隨機位置

我該如何使用它們?

我想要的是隨機定位一個提交按鈕!

+0

請發表你有什麼到目前爲止已經試過。 – Banana

+0

我卡住了......我可以使用CSS來定位任何元素,但不知道如何隨機地做到這一點。 css是否讀取php變量? – stilts77

+0

我明白你被卡住了,這不是我所問的。請在您的問題中發佈您迄今爲止嘗試解決此問題的方法...... – Banana

回答

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!" />

+0

太好了 - 非常感謝。 – stilts77

+0

我在哪裏包含這些代碼?在身體的第一個 -