0
我有一種情況與動畫「img」,當我把我的var完成內部點擊功能它不會動畫,但當我讓它外功能它的工作。它有全球的東西和當地的範圍?謝謝jquery動畫圖像,位置,寬度和高度
var complete = true;
$("img").click(function() {
if (complete) {
$(this).animate({
left: "50%",
top: "400px",
width: "300px",
height: "300px"
}, 700);
} else {
$(this).animate({
left: "8px",
top: "10px",
width: "150px",
height: "150px"
}, 700);
}
complete = !complete;
});
是的,它與全局和局部範圍有關,如果你在變量聲明內部單擊事件函數,意味着函數內的變量作用域 - 函數內的局部作用域,但是當你在函數外部聲明時,意味着你聲明變量作爲全球範圍內的全球範圍,並且您可以在頁面中隨時隨地使用該變量。 –
查看[MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var)或[此文檔](https://stackoverflow.com/documentation/javascript/480 /範圍#t = 201706211704131525277) – gaetanoM