作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你能告诉我如何在 jQuery 中获取输入文本字段的点击事件吗?我有一个输入文本字段,我需要显示警报的点击事件。
<div data-role="fieldcontain">
<label for="text-12" class="name_label_field">Name<span class="custom-label">*</span> :</label><span class="mandatory_label fright custom-label">*<span class="test_1">Maximum Limit 260</span></span>
<input name="text-12" id="text-12" value="" type="text" class="documentName_h name_input_box" autocorrect="off" maxlength="240" onkeypress="validateNote(event)">
</div>
最佳答案
$('#text-12').click(function(e) {
alert('clicked');
});
一般来说,对于所有文本输入,使用 input[type="text"]
而不是 #text-12
选择器。
关于javascript - 如何在jQuery中获取输入文本框的点击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23041355/
我是一名优秀的程序员,十分优秀!