在文本框的 onclick 上添加选择器视图

发布于 2024-12-10 19:48:21 字数 361 浏览 0 评论 0原文

如何在文本框的单击时添加选择器视图。

这是我用于文本框的代码:

<td>
<input value="0" id="LVAD1" name="h9" style="height: 22px;width:48px;
                        margin-left:2px;"readonly="readonly"; type="text">
</td>

我创建了单独的 PickerView.hpickerView.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风疏影 2024-12-17 19:48:21

我希望这就是您正在寻找的:在开始时,为选择器设置 style="display:none" 并为文本框使用 onclick 事件。

<head>
<script type="text/javascript">
   function enable_picker()
   {
   var picker = document.getElementById('picker');
   picker.style.display="block";
   }
</script>
</head>
   <h1 id="picker" style="display:none">hello</h1>
   <input type="text" onclick="enable_picker()"/>

不要忘记为选择器视图设置 id="picker"
或者,简单地说,只需使用 jQuery 插件隐藏、显示属性和动画效果即可!

我真的不知道选择器是什么,但是当您单击文本框时,上面的代码会弹出 hello

I expect this is what you are looking for: at the start, set style="display:none" for the picker and use onclick event for textbox.

<head>
<script type="text/javascript">
   function enable_picker()
   {
   var picker = document.getElementById('picker');
   picker.style.display="block";
   }
</script>
</head>
   <h1 id="picker" style="display:none">hello</h1>
   <input type="text" onclick="enable_picker()"/>

Don't forget to set id="picker" for picker view
or, 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文