jquery 与 Asp.net 中的文本更改事件
我有 2 个文本框,如果我在 textbox1 中写入任何内容,它应该立即反映在 textbox2 中,如果我在 textbox2 中写入任何内容,它应该反映在 textbox1 中。
那么我该怎么做呢? 我之前看过这篇文章,如何在两个文本框之间实现?
http://www.zurb.com/playground/jquery-text-change -custom-event
这是我的文本框:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
I have 2 textboxes and If I write anythng in textbox1 it should reflect immediately in textbox2 and If I write anything in textbox2 it should reflect in textbox1.
So how do I do that?
I have seen this article before and how to Implement between two textboxes?
http://www.zurb.com/playground/jquery-text-change-custom-event
Here are my textboxes:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
上述引用文本框的方法不起作用。 ASP.NET 为服务器控件生成一些 id。
有一个相对干净的解决方案。我建议您将类添加到文本框中。
jquery 代码如下:
您可以在 jsfiddle 上看到使用 vanilla html 的示例: http://jsfiddle.net/HUFGD /
The above way of referencing the textboxes won't work. ASP.NET generates some id for the server controls.
To have a relatively clean solution. I would suggest you add classes to the text boxes.
The jquery code will be as follows:
You can see an example using vanilla html at jsfiddle: http://jsfiddle.net/HUFGD/
这可能是个好伎俩
this could be good trick
演示:http://jsfiddle.net/SGcEe/2/
Demo: http://jsfiddle.net/SGcEe/2/