Ajax调用后jQuery datepicker不起作用?

时间:2015-12-09 18:25:11

标签: javascript jquery ajax datepicker

您好我尝试这些代码我尝试尝试但代码未在我的代码部分成功运行如何解决此错误。

这是我的日期选择代码

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
  $(function() {

    $("#departure_date").datepicker();
  });
</script>

这是我的ajax通话功能

function CheckUnique(mobile) {
  //alert(mobile);
  var xmlhttp;
  if (mobile == "") {
    // document.getElementById(r_number).innerHTML="";
    alert("Mobile Number is Blank!!");
    document.getElementById('mobile').focus();
    return;
  }
  if (window.XMLHttpRequest) {
    xmlhttp = new XMLHttpRequest();
  } else {
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
      document.getElementById("error_message").innerHTML = xmlhttp.responseText;
      //alert();
      if (xmlhttp.responseText != '') {
        document.getElementById('button').style.display = 'none';
      }
    }
  }
  xmlhttp.open("GET", "ajax.php?mobile=" + mobile, true);
  $("#arrival_date").datepicker();

  xmlhttp.send();
}

该数据来自ajax

<div class="form-group">
  <div class="col-lg-4 ">
    <label for="pwd">Departure Date:</label>
    <input type="text" name="departure_date" class="form-control" id="departure_date" placeholder="11/12/2015">
  </div>
</div>

提前谢谢。

0 个答案:

没有答案