当我尝试调用 javascript 文件中的方法时,我遇到了一个奇怪的问题。这个 .js 文件有以下两种方法:
function setCookie(c_name, value, exdays)
{
//set the expiry date as now + the specified number of days
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
//add the expiry date string to the cookie value
var c_value = escape(value) + ((exdays==null) ? "" : ";
expires="+exdate.toUTCString()+"; path=/");
//set the cookie
document.cookie = c_name + "=" + c_value;
}
function setTheCookie(c_name, value, exdays)
{
//set the expiry date as now + the specified number of days
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
//add the expiry date string to the cookie value
var c_value = escape(value) + ((exdays==null) ? "" : ";
expires="+exdate.toUTCString()+"; path=/");
//set the cookie
document.cookie = c_name + "=" + c_value;
}
在我使用按钮时单击onclick="setTheCookie('cookie_bar_hide', 'yes', 365)"
它会被调用,但是当我使用onclick="setCookie('cookie_bar_hide', 'yes', 365)"
它时不会被调用。
任何想法为什么会发生这种情况?