我在 asp.net mvc 项目的 Global.asax.cs 的会话开始中注册了 cookie。然后我想在 View 中测试 cookie 的变量。
全球.asax.cs:
HttpCookie instock = new HttpCookie("instockV");
instock.Value = "1";
Response.Cookies.Add(instock);
在我看来,我正在使用 jquery :
<div id="test"></div>
$("#test").text($.cookie("instockV"));
但我的 div 中的结果是null
.
谁知道这个问题,请分享。
谢谢。