创建 complete.ly 实例时,配置选项的可能值是什么?
我的代码是这样的:
var pv = completely(document.getElementById('container'));
如预订示例所示:http ://complete-ly.appspot.com/examples/booking.html
但是 API 文档http://complete-ly.appspot.com/index.html#API说明了配置对象?
创建 complete.ly 实例时,配置选项的可能值是什么?
我的代码是这样的:
var pv = completely(document.getElementById('container'));
如预订示例所示:http ://complete-ly.appspot.com/examples/booking.html
但是 API 文档http://complete-ly.appspot.com/index.html#API说明了配置对象?
看起来这在任何地方都没有记录。然而,查看源代码,您似乎有一小部分选项可以执行较小的外观定制:
取自源代码:
function completely(container, config) {
config = config || {};
config.fontSize = config.fontSize || '16px';
config.fontFamily = config.fontFamily || 'sans-serif';
config.promptInnerHTML = config.promptInnerHTML || '';
config.color = config.color || '#333';
config.hintColor = config.hintColor || '#aaa';
config.backgroundColor = config.backgroundColor || '#fff';
config.dropDownBorderColor = config.dropDownBorderColor || '#aaa';
config.dropDownZIndex = config.dropDownZIndex || '100';
config.dropDownOnHoverBackgroundColor = config.dropDownOnHoverBackgroundColor || '#ddd';
但是,您可以访问任何 HTML 包装的元素,这样您就可以自己做任何事情,这是毫无价值的。