如何删除具有名称的特定 cookie roundcube_sessauth
?
不应该以下:
function del_cookie(name) {
document.cookie = 'roundcube_sessauth' +
'=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
}
进而:
<a href="javascript:del_cookie(name);">KILL</a>
杀死roundcube_sessauth
饼干?