摘要:
function svcode(F) { if (document.all) { var F = $id(F); var E = window.open("", "_blank", "top=10000"); E.document.open("text/html", "replace"); E.document.writeln(F.value); E.document.execCommand("saveas", "", "mb5u.htm&quo 阅读全文
摘要:
//1.插件框架:/** name @键* value @值* options @选项,包括有效期 路径 域名等*/jQuery.cookie = function(name, value, options) {}var cookie_name = 'cookie_name';//2.1、设置cookie,通过时间间隔,单位"天"$.cookie(cookie_name, 'cookie值', { path: '/', expires: 1 });//2.2、设置cookie,通过到期时间,如:二十四小时后失效var date 阅读全文