Javascript更改DIV背景颜色onclick

时间:2013-06-10 14:47:34

标签: javascript html css background-color

我正在尝试在提交表单后更改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 个答案:

答案 0 :(得分: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>
<? } ?>

测试它,它的工作原理是在关键字输入上插入颜色

答案 1 :(得分:3)

你可以使用jQuery轻松完成这个:

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

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

  });

答案 2 :(得分: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)];
}

适应您的需求,希望有所帮助

答案 3 :(得分:0)

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