gpt4 book ai didi

javascript - 我可以在这里使用 Javascript 闭包而不是全局变量吗?

转载 作者:行者123 更新时间:2023-11-28 11:29:03 24 4
gpt4 key购买 nike

当前设置:

var placeId;
function selectPlace(place) {
$('#selectPlace').html('Selected Place: <b>' + place.Name + '</b>');
$('#map').hide(400);
placeId = place.Id;
}

$(document).ready(function()
{
$('#postMessage').click(function() {
alert("PlaceId: " + placeId);
});
});

我可以/应该使用闭包吗?

最佳答案

这似乎是一件合理的事情,根据上下文,您可以通过用函数表达式替换代码来轻松地做到这一点:

 (function(){
var placeId;
// It looks like you want selectPlace to be a global function?
// hence i'm using assignment of a function expression here
selectPlace = function (place) {
$('#selectPlace').html('Selected Place: <b>' + place.Name + '</b>');
$('#map').hide(400);
placeId = place.Id;
}

$(document).ready(function()
{
$('#postMessage').click(function() {
alert("PlaceId: " + placeId);
});
});
})();

关于javascript - 我可以在这里使用 Javascript 闭包而不是全局变量吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/609023/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com