下面的代码是我的实现中 ajax 调用的响应。
/* response of ajax call */
<script> var count = 6; </script>
<div> some code goes here</div>
如何从jquery中的ajax响应中获取上述计数值
$.ajax({
url: url,
type: "GET",
dataType: "text",
timeout: 20000,
success: function(response){ },
error: function(){/* error code goes here*/}
});