我需要使用jquery / ajax只获取html的打印数据,我有
$.ajax({
url:'http://192.168.1.111/sd/interruociones/',
type:'get',
dataType: '',
success: function (response) {
console.log(response);
},
error: function(error){
console.log(error);
}
});
在控制台上我获得
<html>
<head>
<script type="text/javascript" src="zepto.min.js"></script>
<script type="text/javascript">
function refresh() {
$('#content').load('/arduino/temperature');
}
</script>
</head>
<body onload="setInterval(refresh, 100);">
<span id="content">0</span>
</body>
</html>
但我只想要span标签中的数据。我将数据类型更改为html和txt但不起作用,帮助!