2015-07-11 151 views
-1

笨3.0爲什麼是responseText輸出?

形式使用按鈕提交事件: <button type="button" name="submit">SEARCH</button>

這裏是很簡單的JavaScript我到目前爲止,我不明白爲什麼它應該在警告被輸出表單頁面箱:

$(document).ready(function() { 
    $("button[name='submit']").click(function(){ 
     // 
    });   
}); 

產生一個警告框,readyState的,狀態文本,並responseText的:

200 , OK, <!DOCTYPE html> 
<html lang="en"> 
<head> 
    <meta charset="utf-8"> 
(...and the entire html output of the form page goes here...) 
</body> 
</html> 

我不明白爲什麼我的js應該輸出任何東西,如果我沒有告訴它。

+0

什麼是表單動作屬性值? – Dhiraj

+1

@DhirajBodicherla,爲什麼行動價值很重要?我不認爲這與問題有關。請解釋它爲什麼會是?我還沒有提交提交動作。 – TARKUS

+2

我最初並不理解這個問題。現在我知道了。操作屬性不相關。 – Dhiraj

回答

1

事實證明,我打電話給我的另一個javascript,它有一個相同的$(document).ready(function腳本部分。即使<button name='submit']是相同的,所以我的JavaScript很困惑,只是拋出了狀態碼和responsetext。