jQuery从另一个页面获取DIV内容

时间:2014-08-18 10:39:32

标签: jquery

我有以下代码:

<script>
$( document ).ready(function() {
$("div.imp-1 span.field-content").each(function() {
    var $li = $(this);
    var href = $li.find("a").attr("href") + ".htm";  // use this in your real case
    //console.log (href);
    $.ajax({
        type: "POST",
        success: function(data) {
            var time = $(data).find('.time-default').html();
            $li.append(" - " + time);
        }
    });
});

});
</script>

HTML页面有一些HTML如下

<div class="time-default">22:15 - 23:30</div>

它不断返回&#34; undefined&#34; - 我究竟做错了什么?

由于

1 个答案:

答案 0 :(得分:2)

您需要传递其他网页网址。

$.ajax({
    url: href,  //Pass URL here 
    type: "GET", //Also use GET method
    success: function(data) {
        var time = $(data).find('.time-default').html();
        $li.append(" - " + time);
    }
});