JQuery 会话问题
我在我的母版页中使用 jQuery 会话。我缺少什么吗?
代码:
<script type="text/javascript" language="javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.session("lnkID","A1")
});
</script>
错误:
Microsoft JScript 运行时错误:对象不支持此属性或方法
I am using jQuery session in my master page. Anything I'm missing?
Code:
<script type="text/javascript" language="javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.session("lnkID","A1")
});
</script>
Error:
Microsoft JScript runtime error: Object doesn't support this property or method
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅就您的示例而言,您缺少对所需文件的引用,并且您没有将 jQuery 代码包装在脚本标记中。您不仅需要引用 jquery-source,还需要引用 jquery-json 和 jquery-session 也是如此。
一旦你完成了这些,你需要将你的逻辑放在脚本标签中:
请参阅以下演示以获取示例: http://www.jaysalvat.com/session/test1.html
最后,
script
标记的language
属性已被弃用。您可以删除它,但保留type
属性。By your example alone, you're missing a reference to the required files, and you're not wrapping your jQuery code in script tags. You need to reference not only jquery-source, but jquery-json, and jquery-session as well.
Once you've got those in place, you need to place your logic within script tags:
See the following demo for an example: http://www.jaysalvat.com/session/test1.html
Lastly, the
language
attribute of thescript
tag is deprecated. You can do away with it, but keep thetype
attribute.