本文實例講述了Ajax獲取響應內容長度的方法。分享給大家供大家參考。具體如下:
var xhr = $.ajax({ type: "HEAD", url: "path/to/file.ext", success: function(msg){ alert(xhr.getResponseHeader('Content-Length') + ' bytes'); } });
希望本文所述對大家的Ajax程序設計有所幫助。