我可以设置全局变量并在其他文档就绪事件中使用它们吗?
我正在使用 jQuery 1.6.2 和 ColdFusion 9。
当请求页面时,会包含许多文件。有几个文件包含 jQuery 文档就绪方法。我想设置一些可以在整个页面中使用的全局变量。例如,我想在我的幻灯片中使用这些变量:
SlideUpRate = 400;
SlideDownRate = SlideUpRate * 2;
这似乎不一致。有没有办法让它持续工作?
+++++++++++++++++++++++++++++++++++++++++++++++++ 回答
在index.cfm 文件中,我设置了全局变量,这些变量可以在整个渲染页面的其他 jQuery 中使用和重用。
<script type="text/javascript">
var SlideUpRate = 250;
var SlideDownRate = SlideUpRate * 2;
var HideRate = 250;
var ShowRate = HideRate * 2;
var ImageUnsaved = "layout/checkbox_unsaved.png";
var ImageSaved = "layout/checkbox_saved.png";
$(document).ready(function() {
// other jQuery stuff
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以将它们添加到全局命名空间:
http://jsfiddle.net/QDPAm/
如果您不这样做不想用多个变量污染全局范围,您可以创建一个对象来包含这些变量:
然后在您的“ready”函数中将变量添加到“vars”对象中。
另一个
ready
函数:http://jsfiddle.net/aalouv/QDPAm/ 1/
我不明白为什么你的例子不起作用。也许是因为您试图在设置某些变量之前访问它们?
http://jsfiddle.net/aalouv/QDPAm/3/
还创建不带 var 的变量指示器首先会将变量添加到全局范围,因此您可以使用以下方式访问变量:
window
或之前不使用任何命名空间。http://jsfiddle.net/aalouv/QDPAm/2/
Yes you can by adding them to the global namespace:
http://jsfiddle.net/QDPAm/
If you don't want to pollute the global scope with multiply variables you can make an object to contain these variables:
And then in your
ready
functions add variables to thevars
object.And another
ready
function:http://jsfiddle.net/aalouv/QDPAm/1/
I cant see why your example shouldn't work. Maybe because your are trying to access some variables before they are set?
http://jsfiddle.net/aalouv/QDPAm/3/
Also creating variables without the var indicator first will add the variable to the global scope, So you can access the variable with:
window
or just without any namespace before.http://jsfiddle.net/aalouv/QDPAm/2/
Evik,
我会使用对象文字来存储局部变量,如下所示:
现在,当您想要访问这些页面级属性时,您将使用对象文字:
通过将计算出的费率放入函数中,您将获得的一个好处是您可以封装功能并使这些功能更易于维护和移植。
我要做的另一件事是通过使用更多对象文字来清理多个 $(document).ready 函数,如 Rebecca Murphey 的博客文章中所述: http://blog.rebeccamurphey.com/2009/10/15/using-objects-to-organize-your-code。
Evik,
I'd use a object literal to store you local variables like so:
Now when you want to access these page level properites you'd use the object literal:
One benefit you'll get by putting the calculated rates in a function is that you can encapsulate the functionality and make these functions more maintainable and portable.
Another thing I'd do is clean up the multiple $(document).ready functions by using more object literals as discussed in this blog post by Rebecca Murphey: http://blog.rebeccamurphey.com/2009/10/15/using-objects-to-organize-your-code.