admin管理员组文章数量:1344605
We have three JS files:
<script type="text/javascript" src="js/pm.init.js"></script>
<script type="text/javascript" src="js/pm.util.func.js"></script>
<script type="text/javascript" src="js/pm.nav.js"></script>
In init.js we have:
$(function(){
var dirty = false;
})
In util.func.js we have:
function dirtyCheck(actionFunction) {
if (dirty == false) {
actionFunction();
return;
}
...
And in nav.js we have:
$(function(){
$('#btn-nav-refresh').click(function() {
dirtyCheck(function() { doRefresh(); });
});
...
Now when the btn-nav-refresh
function fires after a user clicks the button we get a dirty is not defined
error. Why is this??
We have three JS files:
<script type="text/javascript" src="js/pm.init.js"></script>
<script type="text/javascript" src="js/pm.util.func.js"></script>
<script type="text/javascript" src="js/pm.nav.js"></script>
In init.js we have:
$(function(){
var dirty = false;
})
In util.func.js we have:
function dirtyCheck(actionFunction) {
if (dirty == false) {
actionFunction();
return;
}
...
And in nav.js we have:
$(function(){
$('#btn-nav-refresh').click(function() {
dirtyCheck(function() { doRefresh(); });
});
...
Now when the btn-nav-refresh
function fires after a user clicks the button we get a dirty is not defined
error. Why is this??
-
Just remove the
var
beforedirty = false
. – casablanca Commented Oct 12, 2010 at 19:33
4 Answers
Reset to default 5I feel dirty myself telling you how to make your "dirty" variable into a dirty global variable, but it'd be like this:
$(function(){
window.dirty = false;
})
You should however find a better way to do this. Here's an idea:
$(function() {
$('body').data('dirty', false);
});
Then:
// ...
if (${'body').data('dirty')) takeBath();
In init.js can't you just put var dirty = false;
as a global variable and not inside a function definition?
The variable dirty is only known in your closure. That's why.
$(function(){
var dirty = false;
});
alert(dirty); // Undefined (same file, just one line after.
It's the main feature of the closure...
As others have noted, dirty
is out of scope because it is enclosed by your document ready function. Change your declaration to be like this instead:
var dirty = false;
$(function(){
});
本文标签: jqueryJavaScript variable not defined errorStack Overflow
版权声明:本文标题:jquery - JavaScript variable not defined error? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743803858a2541813.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论