Firefox 扩展:自定义自动完成
我找到了Google 自动完成的代码示例并为 Bing 创建了其他组件和其他搜索提供商,但我无法切换自动完成功能。我使用以下代码来更改 autocompletesearch
,但它不起作用。仅当我在 XUL 中定义 autocompletesearch 属性时,组件才起作用。
textbox.setAttribute("autocompletesearch", engine + "-autocomplete");
I've found code sample for google autocomplete and created other components for Bing and other search providers, but I can't switch autocompletion. I use following code to change autocompletesearch
, but it doesn't work. Component works only if I define autocompletesearch property in XUL.
textbox.setAttribute("autocompletesearch", engine + "-autocomplete");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次我需要更改自动完成源时,通过克隆和替换输入字段来解决这个问题。
Worked around that problem by cloning and replacing input field each time I need to change autocomplete source.