最新回答 / 仁兄
是confirm用错了,应该是var b=confirm("是否取消设置?"); if(b!=false){ var ob1=document.getElementById("txt"); ob1.removeAttribute('style'); }或者可以把if换成if(confirm("是否取消设置?")==true)
2017-01-19
最新回答 / 慕尼黑9128539
window.alert = function(str) { var shield = document.createElement("DIV"); shield.id = "shield"; shield.style.position = "absolute"; shield.style.left = "0px"; shield.style.top = "0px"; shield.style.width = "100%"; shield.style.height = document.body.scro...
2017-01-19
最赞回答 / 绎中道
这一句是说id为p1的元素为蓝色而且你的这个代码写错了,是document.getElementById,里面有get element by id 这个英语词组,意思是“通过id获取元素”,希望可以帮到你
2017-01-16