-1
我在這裏使用多選擇器在這個選擇框裏面我正在使用這個選擇的變化複選框我想執行一個函數名稱getValue()。我Dropdownchecklist試過,但對我來說它不工作multiselectbox這裏的複選框onChange不工作
下面是我的代碼
<html>
<head>
<link rel="stylesheet" type="text/css" href="ui.dropdownchecklist.css" />
<link rel="stylesheet" type="text/css" href="demo.css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="ui.core.js"></script>
<script type="text/javascript" src="ui.dropdownchecklist.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#cboLocation").dropdownchecklist({ firstItemChecksAll: true, maxDropHeight: 100 });
});
function getValue()
{
alert("hai");
return false;
}
</script>
</head>
<body>
<select name="cboLocation" class="width150" id="cboLocation" multiple="multiple" onChange="getValue()">
<option>(all)</option>
<option>Banana Nut</option>
<option>Black Walnut</option>
<option>Burgundy Cherry</option>
<option>Butter Pecan</option>
<option>Strawberry Cheesecake</option>
<option>Turkish Coffee</option>
<option>Vanilla</option>
</select>
</body>
</html>
謝謝