作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
var function1 = function (ans){
alert("A");
}
$(document).ready({
$("input[type='radio']").click(function1(ans));
});
如果function1
没有参数那么我们可以有 .click(function1)
和function1
不会被调用。
同时,当有参数时,function1
加载文档后立即调用。如何在不调用函数的情况下将参数传递给函数?
最佳答案
您必须通过 callback
功能:
$(document).ready({
$("input[type='radio']").click(function(){
function1(ans));
});
});
$("input[type='radio']").click(function1(ans));
触发click
事件处理程序automatically
.
关于javascript - 如何将参数传递给函数而不被调用javascript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42111794/
我是一名优秀的程序员,十分优秀!