首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

读取到的cookie值是null,

2014-01-03 
读取到的cookie值是null,求救!htmlheadscript srcjquery-1.7.2.min.js typetext/javascript/

读取到的cookie值是null,求救!
<html>
<head>
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="cookies.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$(".a").click(function(){
$.cookie('a1',$(".a").text());
alert($.cookie('a1'));
});
});
</script>
</head>
<body>
<p class="a" style="cursor:pointer;">123</p>
</body>
</html>
[解决办法]
没问题。

<html>
<head>
<script src="../../../lib/jquery/jquery-1.7.2.js" type="text/javascript"></script>
<script src="../../jquery-cookie-master/jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$(".a").click(function(){
$.cookie('a1',$(".a").text());
alert($.cookie('a1'));
});
});
</script>
</head>
<body>
<p class="a" style="cursor:pointer;">123</p>
</body>
</html>

热点排行