1. 程式人生 > >apicloud IOS上fixed定位造成的輸入框錯位解決辦法

apicloud IOS上fixed定位造成的輸入框錯位解決辦法

在你需要跳轉介面的時候設定以下程式碼:

softInputMode:'pan'

例子:

api.openFrameGroup ({
            name: 'footer_tab_demo',
            scrollEnabled:false,
            customRefreshHeader: 'UIPullRefresh',
            rect:{
            x:0,
            y:header_h,
            w:'auto',
            h:body_h-footer_h-header_h
            },
            index:0,
            preload:3,
            frames:
            [{
                name: 'machine',
                url: './html/machine.html',
                bounces:true,
                softInputMode:'pan'//設定ios錯位問題
            }]
        }, function(ret, err){

        })
    }