$(document).ready(function() {
var x = "";
$("#anyElement").click(function() {
x = "test";
alert(x);
});
alert(x);
});
當第一次警報的作品,消息框,顯示「測試」。當第二次提醒工作時,messagebox顯示「」。如何在點擊事件中設置全局變量?
$("#anyElement").click(function() {
// How can i set the x veriable as "test" here
});
全局是壞 – morissette 2014-10-27 19:54:51
代碼看起來很好......你肯定第一個警報沒有'「」'? – tymeJV 2014-10-27 19:55:11
這是由於變量的範圍。 – 2014-10-27 19:55:53