这是一个非常基本的例子,但我仍然是jQuery的初学者,我总是很难结合jQuery事件(函数?)。
$(function () {
$(document).on('focus', 'input[type=text]', function () {
this.select();
});
});
我想添加.on('focus', 'input[type=email]'
和.on('focus', 'textarea'
,而无需创建全新的.on
功能。
答案 0 :(得分:1)
尝试使用multiple selector
,
$(function () {
$(document).on('focus click touch', 'input[type=text],input[type=email], textarea', function () {
this.select();
});
});