JQuery 会话问题

发布于 2024-08-21 15:06:37 字数 403 浏览 2 评论 0原文

我在我的母版页中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

別甾虛僞 2024-08-28 15:06:37

仅就您的示例而言,您缺少对所需文件的引用,并且您没有将 jQuery 代码包装在脚本标记中。您不仅需要引用 jquery-source,还需要引用 jquery-jsonjquery-session 也是如此。

<script type="text/javascript" src="scripts/jquery.js"></script> 
<script type="text/javascript" src="scripts/jquery.json.js"></script> 
<script type="text/javascript" src="scripts/jquery.session.js"></script>

一旦你完成了这些,你需要将你的逻辑放在脚本标签中:

<script type="text/javascript">
$(function(){
  $.session("foo", "bar");
});
</script>

请参阅以下演示以获取示例: 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.

<script type="text/javascript" src="scripts/jquery.js"></script> 
<script type="text/javascript" src="scripts/jquery.json.js"></script> 
<script type="text/javascript" src="scripts/jquery.session.js"></script>

Once you've got those in place, you need to place your logic within script tags:

<script type="text/javascript">
$(function(){
  $.session("foo", "bar");
});
</script>

See the following demo for an example: http://www.jaysalvat.com/session/test1.html

Lastly, the language attribute of the script tag is deprecated. You can do away with it, but keep the type attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文