Heim >Web-Frontend >js-Tutorial >js弹出窗口之弹出层的小例子_javascript技巧

js弹出窗口之弹出层的小例子_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:32:161661Durchsuche

[html]

复制代码 代码如下:

 
 
 
弹出窗口 
 
 
<script> <BR>var baseText = null; <BR>function showPopup(w,h){ <BR> var popUp = document.getElementById("popupcontent"); <BR> popUp.style.top = "200px"; <BR> popUp.style.left = "200px"; <BR> popUp.style.width = w + "px"; <BR> popUp.style.height = h + "px"; <BR> if (baseText == null) baseText = popUp.innerHTML; <BR> popUp.innerHTML = baseText + "<div id=\"statusbar\"><input type=\"button\" value=\"Close window\" onClick=\"hidePopup();\"></script>
";    
    var sbar = document.getElementById("statusbar");    
    sbar.style.marginTop = (parseInt(h)-60) + "px";   
    popUp.style.visibility = "visible"; 

function hidePopup(){    
    var popUp = document.getElementById("popupcontent");    
    popUp.style.visibility = "hidden"; 

 
 
 
content
 

 

onclick

 
 
 
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn