我正在尝试定位默认设置为“Null”的 jQuery 键盘(直接显示在输入元素下方)。
$.keyboard.defaultOptions = {
// *** choose layout & positioning ***
layout : 'qwerty',
customLayout : null,
position : {
of : null, // optional - null (attach to input/textarea) or a jQuery object (attach elsewhere)
my : 'center top',
at : 'center top',
at2: 'center bottom' // used when "usePreview" is false (centers the keyboard at the bottom of the input/textarea)
}
然而,我想要做的是将键盘连接到 id 为“foo”的 div。
如果进行了这种更改,上面的代码会是什么样子?
谢谢。