window.alert = function(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; iframe.style.fontWeight="normal"; iframe.setAttribute("src", 'data:text/plain,'); document.documentElement.appendChild(iframe); window.frames[0].window.alert(name); iframe.parentNode.removeChild(iframe); } 去掉url之后,弹出的字体会加粗。
系统的alert无法定制,除非你自己用div+css实现一个弹窗,用现成的第三方库也可以