如何同步 html 中的文本字段
我在页面上有多个输入字段,其中一些是 type="textfield" 我想对其中一些文本字段进行分组, 这样,如果我在其中一个中输入某些内容,它就会分配给该组中的其余部分。
我尝试过使用与单选按钮相同的名称,就像这样工作,但这似乎不起作用。 我浏览过网络但找不到任何例子。
有谁知道如何做到这一点,或者在任何地方告诉你如何做?
问候
克里斯
I have multipul input fields on a page, a few of them are type="textfield"
and some of those textfields i want to group,
so that if i type something into one of them it propergates to the rest within that group.
I have tried using the same name as radio buttons work like this, but that doesn't seem to work.
i have looked around the net but cannot find any examples.
does anyone know how to do this, or anywhere which tells you how?
Regards
chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为纯 html 是不可能的,你尝试过使用 JavaScript 吗?我会研究 jQuery 来为此设置事件处理程序。
将对 textbox1 的所有更改做出反应并将值复制到 textbox2。未经测试的代码,只是一种方法。
I don't think it's possible with pure html, have you tried using JavaScript? I would look into jQuery to set up event handlers for that.
Will react to all changes of textbox1 and replicate the value to textbox2. Untested code, only an approach.
jQuery 从 1.7 版开始提供了一种使用 .on() 处理程序方法处理多个事件的便捷方法:
jQuery since version 1.7 offers a convenient way to handle several events by using the .on() handler - method: