Your variable isn't global. You've declared it inside a function so it is local to that function. You need to move the var
statement outside your document ready function:
var myvar=35;
$(function(){
// other document ready stuff here, including
// using or assigning a value to myvar if needed
});
Then it will be globally scoped and can be accessed from other script files (as long as they're included after the one where it's declared).
If you don't know the value to assign until the document ready then do this:
var myvar; // declare variable
$(function(){
myvar = 35; // assign value
});
Since you don't try to use the value until the other script's document ready handler runs this would be fine.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…