我正在尝试 在我的 asp.net webform 上 使用Jquery Session 插件对会话进行读/写。我添加了
<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>