私は長い時間を開発していない、私はいくつかの反射を失った。jQueryが動作しないAjaxリクエスト
誰かが私を助けることができますか?
HTML
<form>
<label for="title">Title :</label>
<input type="text" id="title" />
<label for="comment">Comment :</label>
<input type="text" id="comment" />
<label for="project">Project :</label>
<input type="text" id="project" />
<input type="submit" value="Submit" />
</form>
$(function(){
$('form').submit(function(){
return false;
$.ajax({
type: 'POST',
url: 'http://support.foo.com/insert_bug.aspx',
data: 'username=mr%20dog&password=dog%3Ddog&short_desc=' + $('#title').val() + '&comment=' + $('#comment').val() + '&projectid=' + $('#project').val(),
success: function(msg){
alert(msg);
}
})
});
});
insert_bug.aspx
JavaScriptを:私は提出押すとは、Google Chromeのによると、それは何も起こりません
string username = Request["username"];
string password = Request["password"];
string short_desc = Request["short_desc"];
string comment = Request["comment"];
string projectid_string = Request["projectid"];
ブラウザからURLを送信すると、バグが追加されます。
あなたの関数が戻るの呼び出しの前に'ajax' ... –
@JamesAllardice:私の悪い':x'ありがとう! –