作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试对表单元素进行模糊处理。我遇到的问题是将元素的信息(例如 ID、类等)传递给第二个函数。我为这个例子简化了它:
function otherfunction() {
var inputID = $(this).attr("id");
alert(inputID);
}
$(".formelement").blur(function () {
// Do some stuff here
otherfunction();
});
当然,警告框说输入 ID 未定义。如何将元素的信息传递给其他函数?
最佳答案
将输入作为参数传递:
function otherfunction(el) {
var inputID = $(el).attr("id");
alert(inputID);
}
$(".formelement").blur(function () {
// Do some stuff here
otherfunction(this);
});
或者,使用Function.prototype.apply
:
function otherfunction() {
var inputID = $(this).attr("id");
alert(inputID);
}
$(".formelement").blur(function () {
// Do some stuff here
otherfunction.apply(this);
});
关于javascript - jquery:如何将表单元素信息传递给另一个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10112333/
我是一名优秀的程序员,十分优秀!