我试图在我的asp.net webform上使用Jquery Session plugin对会话进行读/写。我添加了
<script src="Scripts/jquery.session.js"></script> to the top of my aspx page
我在Jquery中使用下拉列表更改,尝试按如下方式设置会话值
$("#MainContent_ddlRequest").change(function () {
$.session.set('GroupName', 'xyz');
alert($.session.get('GenGroupName'));
});
但我收到错误"0x800a138f - JavaScript runtime error: Unable to get property 'set' of undefined or null reference"
我该如何解决此错误
我甚至尝试过如下。但我仍然得到同样的错误
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$.session.set('time', new Date());
alert($.session.get('time'));
});
以下是我在
下面的整个asp.net页面源代码<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
</title></head>
<body>
<form method="post" action="WebForm1.aspx" id="form1">
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE2MTY2ODcyMjlkZKyCMgqniM/aldukh4YFosrxeF/cGpC1q4aFWjLdll/R" />
</div>
<div>
<input id="butSet" type="button" value="SET" />
<input id="butGet" type="button" value="GET" />
</div>
</form>
</body>
</html>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#butSet').click(function () {
$.session.set('time', new Date());
});
$('#butGet').click(function () {
alert($.session.get('time'));
});
});
</script>
答案 0 :(得分:1)
您从中访问的网址是什么?如果您的脚本网址中没有前导/
,那么您可能正在尝试加载脚本。
最好做src="<%=Server.MapPath("~/Scripts/...") %>"
请参阅:http://msdn.microsoft.com/en-us/library/ms178116%28v=vs.100%29.aspx