如何在prototypejs中捕获表单字段焦点丢失事件
我有一个像这样的简单表单:
<form id='myForm'>
<input type='text' name='Textbox'>
<select name='SelectBox'>
<option class='option1'>option 1</option>
<option class='option2'>option 2</option>
</select>
</form>
我想捕获该表单的 Textbox 焦点丢失(模糊)事件和 SelectBox 更改事件。
我不想对整个表单应用更改事件,因为它会导致多次提交表单。
I have a simple form like this:
<form id='myForm'>
<input type='text' name='Textbox'>
<select name='SelectBox'>
<option class='option1'>option 1</option>
<option class='option2'>option 2</option>
</select>
</form>
I want to capture this form's Textbox focus lost (blur) event and SelectBox change event.
I don't want to apply change event for whole form because it causing to submit form more than one time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
id='SelectBox'
添加到您的选择框,将id='Textbox'
添加到您的文本框,然后尝试以下操作:Add
id='SelectBox'
to your select box andid='Textbox'
to your text box and try the following: