4

提交表单后,我正在尝试更改 div 的颜色。新页面上的 div 应该是所选颜色。

JS

 function change(col) {   
     col.style.backgroundColor = '<?php echo $colour ?>';    
 }

HTML

<form action="" method="post">
    <input type='search' name='keywords' value='' style="width:100%;">
<a href='#col'>
<input type=submit  value='Submit' name='doSearch' style="visibility: hidden;" onclick="change(this.href)" />
 </a>

</form>
<div id="col" onclick="location.href='index2.php';">
    <br/>
    <?php echo $message ?>
</div>
4

4 回答 4

4
<? $message="dd"; ?>
<script>
function change(col) {
document.getElementById('col').style.backgroundColor=col;
}
 </script>

<form action="" method="post">
<input type='search' name='keywords' value='' style="width:100%;">

<a href='#col'>
<input type=submit  value='Submit' name='doSearch' style="visibility: hidden;" onclick="enter(this.href)" />
 </a>
 </form>


<div style="width:50px; height:50px;" id="col" onclick="location.href='index2.php';" >

 <br/>
<?php echo $message ?>

</div>
<? if(isset($_POST['keywords'])){ ?>
<script>
 change('<?=$_POST['keywords']?>');
</script>
<? } ?>

测试它,它通过在关键字输入上插入颜色来工作

于 2013-06-10T14:58:53.140 回答
3

您可以使用 jQuery 轻松做到这一点:

$("#yourID").click(function(){

  $(this).css("background-color","yellow");

  });
于 2013-06-10T14:52:04.357 回答
3

看看这里:http: //jsfiddle.net/TeFYV/

代码

var colors = ["red", "blue", "yellow", "green", "orange", "black", "cyan", "magenta"]

function changeColor() {
    //you can as well pass col reference as you do in your code
    var col = document.getElementById("changecolor");
    col.style.backgroundColor = colors[Math.floor((Math.random()*8)+1)];
}

适应你的需求,希望对你有帮助

于 2013-06-10T14:56:20.690 回答
0

最简单的方法是将颜色作为两个页面之间的参数传递,然后在第二页上使用 jQuery 来设置您从该参数获得的颜色。

于 2013-06-10T14:53:09.533 回答