<!DOCTYPE?html>
<html>
????<head>
????????<meta?charset="utf-8"?/>
????????<title>ajax請(qǐng)求學(xué)習(xí)</title>
????????<script?src="jquery-1.7.1.min.js"></script>
????</head>
????<body>
????????<button?id="get-info">點(diǎn)擊</button>
????????<div?id="show-info"></div>
????????<script?type="text/javascript">
????????????$("#get-info").click(function(){
????????????????$.ajax({
????????????????????'url':'array.php',
????????????????????'success':function(data){
????????????????????????var?res?=?$.parseJSON(data);
????????????????????$("#show-info").html(res);},
????????????????????'dataType':'html',
????????????????????})
????????????})
????????</script>
????</body>
</html>把后端穿過來的JSON解析成數(shù)組,怎么賦值到一個(gè)下拉框或者ul列表,怎么做是常用的,簡(jiǎn)潔的?
- 1 回答
- 0 關(guān)注
- 1419 瀏覽
添加回答
舉報(bào)
0/150
提交
取消