我有一个成功的ajax请求,可以下载整个html内容,现在我只需要得到一个包含id“data-today”的div标签。
如何编写这样的脚本?
答案 0 :(得分:5)
看看这个SOQ:
这些方面的东西:
success: function(data) {
//create jquery object from the response html
var $response=$(data);
//query the jq object for the values
var dataToday = $response.find('#data-today').text();
}
答案 1 :(得分:2)
$('#data-today').html()
如果你想要所有html // this out puts
如果你想要里面的文字
$('#data-today').text() // this gives hello how are you
.text()在html之间提供文本
<div> hello how are you </div>