0
我使用此代碼:如何使tempAlert中心由Travis J
如何將消息居中放置?
function tempAlert(msg,duration)
{
var el = document.createElement("div");
el.setAttribute("style","position:absolute;top:40%;left:20%;background- color:white;");
el.innerHTML = msg;
setTimeout(function(){
el.parentNode.removeChild(el);
},duration);
document.body.appendChild(el);
}
更改樣式中'left'的值? – Claies 2015-02-12 02:27:19