我正在使用 jquery.treeview.js。我需要在页面加载时突出显示节点背景颜色。单击时,我可以突出显示背景颜色和字体等。
$("a").css("backgroundColor", "");
$("a").css("font-weight", "");
$(this).css("backgroundColor", "grey");
$(this).css("font-weight", "bold");
$.cookie("url", $(this));
现在我将这个对象保存在一个 cookie 中,并且能够读取相同但无法应用 css,因为它说没有这样的属性。
$.cookie("url").css("backgroundColor", "grey");
为什么我没有从 cookie 中获取 jQuery 对象?