必须设置并确认Cookie。 但是,我想更改确认框的文字?有什么办法吗? 与以下示例中的OK = Hello和Cancel = Reset相同: 的 HTML:
<body onload="checkCookie()"></body>
使用Javascript:
function getCookie(c_name)
{
var c_value = document.cookie;
var c_start = c_value.indexOf(" " + c_name + "=");
if (c_start == -1)
{
c_start = c_value.indexOf(c_name + "=");
}
if (c_start == -1)
{
c_value = null;
}
else
{
c_start = c_value.indexOf("=", c_start) + 1;
var c_end = c_value.indexOf(";", c_start);
if (c_end == -1)
{
c_end = c_value.length;
}
c_value = unescape(c_value.substring(c_start,c_end));
}
return c_value;
}
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
{
var conf = confirm("Welcome again " + username);
if(conf==true)
{
return false;
}
else
{
alert("Your cookies have been reset!");
}
}
else
{
username=prompt("Please input your name below:","");
if (username!=null && username!="")
{
setCookie("username",username,365);
}
}
}
另外,有没有办法像这样做: 设置输入的用户名后,单击取消/重置时也会重置。 如果有人使用jQuery这样做,我不会抱怨。 提前致谢。我会代表谁帮助我:) http://jsfiddle.net/V6LZE/
答案 0 :(得分:1)
还有其他选项使用一些jQuery插件,你可以编辑OK&amp;取消按钮文字。有用的链接:
http://www.codeproject.com/Questions/431829/How-to-change-button-text-of-Alert-message-using-j
Display Yes and No buttons instead of OK and Cancel in Confirm box?
jsfiddle.net/taditdash/PHX2Y /
希望会有所帮助!