code:
function displayError( msg ) {
//检查确保 msg 不是 undefined
if ( typeof msg == ‘undefined‘ ) {
//如果是,则设置缺省消息
msg = "An error occurred.";
}
//显示消息
alert( msg );
}
标签:blog player htm splay type class highlight layer efi
code:
function displayError( msg ) {
//检查确保 msg 不是 undefined
if ( typeof msg == ‘undefined‘ ) {
//如果是,则设置缺省消息
msg = "An error occurred.";
}
//显示消息
alert( msg );
}
标签:blog player htm splay type class highlight layer efi
原文地址:https://www.cnblogs.com/Longhua-0/p/8676424.html