嗨,朋友们我是intel XDK的新手。

我的代码:-

<html>
<head>

    <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css">
    <script src="//code.jquery.com/jquery-1.9.1.js"></script>
    <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
    <script src="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>

<script>

   $(function() {
      $( "#txt_date" ).datepicker({
      changeMonth: true,
      changeYear: true
     });
    });
</script>
</head>
<body>

    <input type="text" name="text-date" id="txt_date" value="" readonly="true" >

</body>
</html>


我也尝试只读取输入文本的属性,但无法解决我的问题。

问题:

这是我的问题,当我单击输入文本时,我会得到很好的Jquery Datepicker。但是使用Datepicker我也会在移动设备上得到Keyboard

提前致谢!!

最佳答案

我认为您应该这样:

$(function() {
         $("#txt_date").keypress(function(event) {
                event.preventDefault();
         });

    $( "#txt_date" ).datepicker({
      changeMonth: true,
      changeYear: true
    });
  });

关于javascript - 如何防止在Intel XDK中的输入文本上打开键盘?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21451727/

10-11 15:03