0
我有這樣的腳本,做AJAX使用jquery,但我希望有具體內容,當我做到了返回undefined進行更新。獲取Ajax內容並將其過濾
<script type="text/javascript">
$(document).ready(function(e) {
$.ajax({
url:'n.php',
cache:false,
type:"GET",
success: function(data){
$('.list-ball').html($(data).find(".count").html());
console.log($(data).find(".count").html());
}
});
});
</script>
你在'data'中得到了什麼?你的代碼很難閱讀,請格式化。 – urfusion
我使用控制檯日誌,我看到這個 –