我可以更改 web 应用程序中文本字段的宽度吗

发布于 2024-11-29 00:20:37 字数 705 浏览 2 评论 0原文

我正在为 iOS、Android、BB 以及任何其他设备制作一个应用程序。我正在使用 webapp-net。 在我的应用程序中,我有一个包含不同文本字段的字段集。这就是我所拥有的:

<fieldset>
    <ul>
        <li><input type="text" id="cc" placeholder="Card Number" autocomplete="off" onkeypress="return isNumberKey(event)" maxlength="23"/></li>
        <li><input type="text" id="chn" placeholder="Holder Name" autocomplete="off" /></li>
        <li><input type="text" id="cvc" placeholder="CSC" autocomplete="off" maxlength="4" /></li>
</fieldset>

对于 CSC,我需要它仅用于 4 个数字,但我无法更改宽度。我还希望能够创建一个弹出窗口/对话框,因此当您单击 CSC 时,会出现一个框,其中包含有关 CSC 的一些信息。

我尝试过,但我什至无法改变宽度。因此,如果您知道如何解决此问题,请告诉我!

I am making an app for iOS, Android, BB, and also any other devices. I am working with webapp-net.
In my app, I have a fieldset containing different text fields. So this is what I have:

<fieldset>
    <ul>
        <li><input type="text" id="cc" placeholder="Card Number" autocomplete="off" onkeypress="return isNumberKey(event)" maxlength="23"/></li>
        <li><input type="text" id="chn" placeholder="Holder Name" autocomplete="off" /></li>
        <li><input type="text" id="cvc" placeholder="CSC" autocomplete="off" maxlength="4" /></li>
</fieldset>

For CSC, I need it to be only for 4 numbers, but I can't change the width. I also want to be able to create a pop up/dialog box, so when you click on CSC a box will appear with a little information about CSC.

I tried, but I can't even change the width. So if you know how to fix this problem please let me know!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

古镇旧梦 2024-12-06 00:20:37

尝试使用 size 属性:

<input type="text" maxlength="4" size="4" />

Try using size attribute :

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