在文本框的 onclick 上添加选择器视图
如何在文本框的单击时添加选择器视图。
这是我用于文本框的代码:
<td>
<input value="0" id="LVAD1" name="h9" style="height: 22px;width:48px;
margin-left:2px;"readonly="readonly"; type="text">
</td>
我创建了单独的 PickerView.h
和 pickerView.m
文件,并创建了委托。
我只需要知道如何在选择器视图和文本框之间提供连接。
How can I add a picker view on onclick of a text box.
Here's the code I am using for the text box:
<td>
<input value="0" id="LVAD1" name="h9" style="height: 22px;width:48px;
margin-left:2px;"readonly="readonly"; type="text">
</td>
I created separate PickerView.h
and pickerView.m
files and have created the delegates.
I just need the know how to provide connection between the pickerview and textbox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我希望这就是您正在寻找的:在开始时,为选择器设置
style="display:none"
并为文本框使用onclick
事件。不要忘记为选择器视图设置
id="picker"
或者,简单地说,只需使用 jQuery 插件隐藏、显示属性和动画效果即可!
我真的不知道选择器是什么,但是当您单击文本框时,上面的代码会弹出
hello
。I expect this is what you are looking for: at the start, set
style="display:none"
for the picker and useonclick
event for textbox.Don't forget to set
id="picker"
for picker viewor, to be simple, just go for jQuery plugins hide, show properties and animation effects!
I don't really know what a picker is but the above code pops out
hello
when you click the textbox.