我不太了解 JS 闭包,我认为它可以解决我的问题。这里是:
我有类似的东西:
$(document).ready(function () {
$("#buttonConfirm").click(function () {
popup_confirme();
});
});
function popup_confirme() {
var r = popup_modal();
}
function popup_modal() {
var int_val = 0;
$(".button").click(function () {
int_val = ($(this).val() == 'yes' ? '1' : '0');
});
return int_val;
}
我想让我的 int_val 由按钮单击事件返回。我需要将 'r' 值设为 0 或 1。我知道我应该使用闭包,但我不知道该怎么做。感谢您的专业知识!