我正在尝试构建一个表单,允许用户通过首先单击他们喜欢的颜色,然后单击目标对象(在本例中由 DIV 表示)来指定对象的颜色。我可以理解基本的 Javascript(和一点 jQuery),但不知道如何处理这个问题。
这是一个基本的 HTML 页面,基本上说明了我正在尝试做的事情。有 3 种颜色可供选择 - 我猜 onclick 事件应该选择一种。在这 3 种颜色下方是 4 个目标 div。选择颜色并单击目标 div 后,其背景颜色应更改为所选颜色,隐藏表单值应更改为颜色编号(0,1 或 2)。
解决这个问题的最简单方法是什么?
<html>
<head>
<style type="text/css">
div {background-color:#000000;width:25px;height:25px;margin:4px;float:left;}
h4 {clear:both;padding-top:10px;}
</style>
</head>
<body>
<script language="JavaScript">
var colors = ["#0000FF", "#999999", "#FF0000"];
</script>
<form name="myForm" action="form.html" method="get">
<h4>Select A Color:</h4>
<div style="background-color:#0000FF;" name="color0"> </div>
<div style="background-color:#999999;" name="color1"> </div>
<div style="background-color:#FF0000;" name="color2"> </div>
<h4>Then click the squares to set them to the selected color(s):</h4>
<div name="square0"> </div>
<div name="square1"> </div>
<div name="square2"> </div>
<div name="square3"> </div>
<input type="hidden" name="square0" value="">
<input type="hidden" name="square1" value="">
<input type="hidden" name="square2" value="">
<input type="hidden" name="square3" value="">
<input type="submit" value="Save The Colors!">
</form>
</body>
</html>