未知的Ajax输出

时间:2013-02-08 09:06:55

标签: javascript jquery

我的jquery ajax代码就像这样

 $(".head-text").live('click', function (event) {

        var url = new URI().addQuery("showlist", 1);
        $.ajax({
            url: url, type: "GET"
            , success: function (data) {

                var $response = $(data);
                alert($response.html);
            }
        });
        return false;

    });

并且警报始终显示此消息

 function ( str ) {
    if ( typeof str != 'undefined' )
    {
      if ( this.data( 'dotdotdot' ) )
      {
        if ( typeof str != 'function' )
        {
          return this.trigger( 'update', [ str ] );
        }
      }
      return _orgHtml.call( this, str );
    }
    return _orgHtml.call( this );
    }

我无法理解出了什么问题或者这意味着什么。我只是想看看结果html。

1 个答案:

答案 0 :(得分:6)

你忘记了()。因此,您将获得.html()方法的源代码。

alert( $response.html() );