使用ajax请求时出现随机HTTP错误405

时间:2013-06-01 14:49:32

标签: ajax http-post contact-form http-error

我收到HTTP错误405动词不允许。由于有时代码工作,有时会抛出http 405错误,我需要了解这是编程问题还是服务器配置问题。我正在使用jjery的ajax。我在这里浏览了所有相关的帖子,并尝试了与代码相关的所有推荐选项。请帮忙。

我的javascript代码如下

$(function() {
$('.error').hide();
$(".button").click(function() {
        // validate and process form
        // first hide any error messages
           $('.error').hide();
          var name = $("input#name").val();
    if (name == "") {
  $("label#name_error").show();
  $("input#name").focus();
  return false;
                            }
    var email = $("input#email").val();
    if (email == "") {
  $("label#name_error").show();
    $("input#email").focus();
  return false;
                             }

  var textquery = $("textarea#textquery").val();
    if (textquery == "") {
  $("label#name_error").show();
  $("textarea#textquery").focus();
  return false;
                                 }

    var dataString = name + email +  textquery;
//  alert (dataString);return false;

    $.ajax({
  type: "POST",
  url: "samplemail.aspx",
  data: dataString,
  success: function() {
    $('#contact_form').html("<div id='message'></div>");
    $('#message').html("<h2>Contact Form <br> Submitted!</h2>")
    .append("<p>We will be in touch soon.</p>")
    .hide()
    .fadeIn(1500, function() {
      $('#message').append("<img id='checkmark' src='images/check.png' />");
                             });
                       }
        });
return false;
});
});
runOnLoad(function(){
  $("input#name").select().focus();
                     });

1 个答案:

答案 0 :(得分:0)

问题解决了 传递参数的方式是错误的iedata:datastring。 正确的方法是数据:{name:name,email:email,textquery:textquery}