文章列表
if(window.opera){
window.onunload = confirmUnload;
}else{
window.onbeforeunload = confirmExit;
}
function confirmUnload(){
if(confirm('blah')){
return true;
}else{
location = self.location;
}
};
function confirmExit(){
return 'blah';
};
JavaScript提供了一种更简便的方法用于比较两个字符串——localeCompare(),localeCompare()使用本地特定的顺序来比较两个字符串,语法如下:
string.localeCompare(target)
参数target是要与string进行比较的字符串。
如果string小于target,则localeCompare()返回小于0的数;
如果string大于target,返回大于0的数;
如果相等(或按照本地顺序的约定两者顺序相当),则返回0。
利用该方法替换上面冗长的作法后,除了代码减少了之外,运行速度也快了不少,而且还支持其它字符库的本地排序。
修改后代码如下: ...