按下按钮继续刷新

时间:2011-10-22 21:44:28

标签: php jquery html

你好我试图让一个按钮在php中移动并寻找来自j查询人员的提示,以防万一在j查询中更容易做。我已经解决了,如果我把左右和中心(单词)放在一个数组中,然后随机选择一个并在div标签旁边打印出来然后在div标签中放一个按钮div应安排好几次右,左,中心会让按钮移动?这是我的代码

<?php
$Keywordarray = new array(3);  
$Keywordarray[0] = "left";  
$Keywordarray[1] = "right";  
$Keywordarray[2] = "center";  

$rand_key = array_rand($Keywordarray);


?>

<div align="<?php echo $rand_key ; ?>">

  <button type="button">Click Me!</button>
</div>

但我得到一个白页?我想尝试移动按钮以停止宏观但只向右和中心

我也试过这个

<?php
$numbers = range(left, right , center);
shuffle($numbers);
foreach ($numbers as $number) {

}


?>

<div align="<?php echo $number ; ?>">

  <button type="button">Click Me!</button>
</div>

页面出现但按钮不动?

找到一些现在可以使用的java脚本

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var flag = 1;
function t() {
if(flag == 1) {
Y.style.top = "75px";
Y.style.left = "700px";
}
if(flag == 2) {
Y.style.top = "115px";
Y.style.left = "100px";
}
if(flag == 3) {
Y.style.top = "300px";
Y.style.left = "350px";
}
flag = flag + 1;
if(flag == 4) {
flag = 1;
}
}
function al() {
alert("Correct!");
}
// End -->
</script>

</HEAD>

<!-- STEP TWO: Copy this code into the BODY of your HTML document -->

<BODY>

<center>

</center>


</DIV>
<DIV ID="Y" STYLE="position:absolute; left:300px; top:300px; width:50px;
height:50px;">
<form>
<input type=button value="YES" onClick="t()">
</form>
</DIV>

1 个答案:

答案 0 :(得分:1)

尝试:

$rand_key = $Keywordarray[array_rand($Keywordarray)];

你首先检查一下手册:) http://php.net/manual/en/function.array-rand.php array-rand返回密钥。