我在这个函数中定义了一个全局变量,但是它不起作用。如果我在函数中定义变量,它可以工作,但我希望它是全局的。
var currentpage = 1;
$(document).ready(function(){
function checkpage(currentpage) {
if (currentpage == 1) {
$(".text_nav").html("some text");
};
}
checkpage();
});
为什么我想要它?因为我想减少click的变量来做一些事情
$( "#button" ).click(function() {
currentpage += 1;
});
//check currentpage variable again (who?)
if (currentpage == 2) {
$(".text_nav").html("some other text");
};
它可以工作,您没有向函数中发送任何内容,执行以下操作:
checkpage(currentpage);
函数中的currentpage
是一个参数,它是该函数的局部变量,与全局变量分开。或者如果不需要,直接删除参数:
function checkpage() { // Other than 'checkpage(currentpage)'
...
}