如果爱我就请<input type="button" onmouseover="run(this)" onclick="alert('我也爱你呀!')" value="点我:)"> 
 <script >
 
 function run(obj)
 {
obj.style.position="absolute"; 
obj.style.left = window.screen.availWidth /2 +   parseInt(200 * Math.random())-100  
obj.style.top =window.screen.availHeight /2 + parseInt(200 * Math.random())-100 
}
 
 </script>