- 注册时间
- 2012-7-24
- 最后登录
- 2012-7-24
- 阅读权限
- 10
- 积分
- 7
- 精华
- 0
- 帖子
- 2
|
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type: "post",
url: "GetDataHandler.ashx",
async: false,
cache: false,
datatype: "json",
success: function(data) {
$.getJSON("GetDataHandler.ashx", { param: "D_Zh" }, function(data) {
$('#combo1').load(data);
$.each(data, function(Key, item) {
alert(item.D_Zh);
});
});
}
});
});
</script>
<input id="combo1" class="mini-combobox" style="width:150px;" textField="text" valueField=""
value="" showNullItem="true" required="true" allowInput="true"/>
|
|