日期:2014-05-16 浏览次数:20426 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="themes/default/easyui.css"/>
<link rel="stylesheet" type="text/css" href="themes/icon.css"/>
<link rel="stylesheet" type="text/css" href="demo/demo.css"/>
<script type="text/javascript" src="Scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="Scripts/jquery.easyui.min.js"></script>
</head>
<body>
<select id="cc" class="easyui-combobox" name="state" style="width:200px;" required="true"/>
<input type="button" value="LoadData" onclick="loadData()" />
<script type="text/javascript">
function loadData() {
alert("dd");
$('#cc').combobox({
url: 'chargeStation.json',
valueField: 'id',
textField: 'text'
});
}
</script>
</body>
</html>