如何以 jquery ui 风格创建标准组合框(选择)?
有组合框启用了自动完成功能。如何以相同的样式创建组合框但没有自动完成功能(只有几个固定值)?
There is combobox with autocomplete enabled. How to create combobox in the same style but without autocomplete (with just a few fixed values)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解您的意思,您不想允许用户输入,并且应通过单击按钮或文本框来更改值。为此,您可以使用“只读”属性,如下所示:
当然,您可以实现您的小部件并通过插件选项进行设置。
If I understood you corectly you want not to allow user input and values shall be changed by click on button or textbox. For this purpose you can use "readonly" attribute like this:
Of course you my implement your widget and set it up by plugin options.