简体   繁体   中英

Stop Ipad keyboard pop-up

I am working on a PHP application and it will work on Ipad,PC,Iphone,android phones etc. I am using jquery datepicker at one place. Now while working on ipad whenever im tapping on date field,immediately Ipad keyboard comes. And as per My requirement there is no need for keyboard. I tried the solution given here

But it didn't worked because i am using a different date-picker.So please suggest a fast method if you knows

尝试将readonly="true"属性添加到该字段以停止iPad键盘弹出窗口。

you can disable it.like this

$(".datePicker").datepicker({
    showOn: 'button',
    onClose: function(dateText, inst) 
    { 
        $(this).attr("disabled", false);
    },
    beforeShow: function(input, inst) 
    {
        $(this).attr("disabled", true);   //set disable to true
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM