单击某个元素时,将选择一个选项。
例如:您点击id =“object3”的Div元素,此操作将自动选择Option元素“Item 3”。
任何人都知道可以执行此操作的Javascript吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Click tag will select option</title>
</head>
<body>
<form action="">
<fieldset>
<ul style="list-style:none;">
<li>
<select id="select_items" name="SelectItems">
<option value="Item1">Item 1</option>
<option value="Item2">item 2</option>
<option value="Item3">Item 3</option>
<option value="Item4">item 4</option>
</select>
</li>
</ul>
</fieldset>
</form>
<div id="object1" style="background-color:#F00;width:30px;height:30px;margin:4px;cursor:pointer;"></div>
<div id="object2" style="background-color:#0F0;width:30px;height:30px;margin:4px;cursor:pointer;"></div>
<div id="object3" style="background-color:#00F;width:30px;height:30px;margin:4px;cursor:pointer;"></div>
<div id="object4" style="background-color:#FF0;width:30px;height:30px;margin:4px;cursor:pointer;"></div>
</body>
</html>
答案 0 :(得分:0)
您可以为每个div定义onclick事件处理程序(在HTML onclick="doSelect( this )"
中或通过动态绑定)
function doSelect( el ) {
var sel_id = el.id.replace( 'object', '' );
document.getElementById( 'select_items' ).value = 'Item' + sel_id;
}
ID为
的版本var relations = { 'object1': 'item-fire', 'object2': 'item-earth', 'object3': 'item-water', 'object4': 'item-wind' };
function doSelect( el ) {
document.getElementById( relations[ el.id ] ).selected = true;
}