從我的問題的標題可以清楚地看到,我想使用javascript淡化身體。 總之我想做的是我想在屏幕上顯示一個警告框,而不是警告框全身背景將會變得褪色。是否有可能使用JavaScript?使用javascript褪色身體
我試過至今:
HTML:
<tr><td><table class="popup" style="font-size:12px;border-bottom:1px solid #482C1F !important; text-align: center !important;top:-10000px;position:absolute;" id="nameFieldPopup" border="0" cellpadding="0" cellspacing="0">
<div id="dontfade">
<tr><td align="left" style="padding-left:10px; padding-top:30px; " id="detailstd"></td></tr>
<tr><td align="right"><input type="button" name="ok" value="OK" onClick="closepopup();"></td></tr>
</table></td></tr>
</tr>
</div>
</div>
的Javascript:
window.onload=function(){
moduleidvar=<?php echo $moduleid?>;
alert(moduleidvar);
if (moduleidvar==-1) {
var tdControl = document.getElementById("detailstd");
tdControl.innerHTML = "eNPS is een moderne
en efficiënte manier voor het meten van medewerker bevlogenheid.In een ";
document.getElementById('nameFieldPopup').style.top="";
document.getElementById('nameFieldPopup').style.visibility = "visible";
}
};
儘量'document.body.style.opacity =「0.3''當所示的警報對話框。重置值爲1後 – tewathia
@tewathia感謝您的回覆,但我想要的是在任何情況下,當顯示警告框時,身體應該褪色。 –
我不知道我明白。當警報框彈出時,你想讓身體慢慢淡出嗎?試試'document.body.style.opacity = 1; var h = setInterval(function(){if(document.body.style.opacity> 0.3){document。body.style.opacity- = 0.1;} else {clearInterval(h);}},100)' – tewathia