我想在一個函數中分配全局變量值,並在另一個函數中使用該變量。但由於某種原因,變量在第二個函數中變爲空白。在函數中分配全局變量
我的想法
無論是功能2第一excuted功能1日前(如果是這樣的話,我怎麼指揮的jQuery TOSTART執行一個特定的語句/函數?)
或者
myvar函數1中的全局變量未設置(如果是這種情況,還有什麼替代方法可以實現這一點?)
var my_var;
//function 1
$(".div1").onhover(function(){
my_var="hello"
});
//function 2
$(".div1").onhover(function(){
//i want to make use of my_var here, but it is blank
});
//I want to use my_var it somewhere here too, but it doesnt work
全局變量:http://stackoverflow.com/questions/3352020/jquery-the-best-way-to-set-a-global-variable – JSuar
的問題是,'函數2 '先打電話;但目前還不清楚你的代碼應該做什麼。 –
看到這個答案:http://stackoverflow.com/questions/290254/how-to-order-events-bound-with-jquery – Selosindis