Всплывающее окошко java

Discussion in 'PHP' started by mackberni, 28 Jan 2011.

  1. mackberni

    mackberni New Member

    Joined:
    7 Jan 2011
    Messages:
    19
    Likes Received:
    0
    Reputations:
    0
    подскажите java скрипт всплывающего окошка нужно так чтоб оно было вроди обычной div только всплывающее!!!
     
  2. banned

    banned Banned

    Joined:
    20 Nov 2006
    Messages:
    3,324
    Likes Received:
    1,193
    Reputations:
    252
    http://ru.wikipedia.org/wiki/Java

    http://ru.wikipedia.org/wiki/Javascript

    http://ruseller.com/lessons.php?rub=32&id=178

    По последней ссылке как раз то окошко всплывает которое ты хочешь, верно?
     
  3. Mickey House

    Mickey House Banned

    Joined:
    21 Jan 2011
    Messages:
    34
    Likes Received:
    17
    Reputations:
    5
    PHP:
    <script language="JavaScript">
    //title - заголовок
    //width - ширина
    //height - высота
    //content - контент
    function open_window(titlewidthheightcontent)
    {
        
    ScrWindow=window.open("","","toolbar=no,location=no,left=0,top=0,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height+"");
        if (
    ScrWindow != null && ScrWindow.opener == nullScrWindow.opener=window;
        
    ScrWindow.document.open();
        
    ScrWindow.document.writeln ("<html><head><title>"+title+"</title></head><body>"+content+"</body></html>");
        
    ScrWindow.document.close();
    }
    </script>  
    or

    PHP:
    <html>
    <
    head></head>
    <
    body>

    <
    a href="#" onClick="return OpenWin()"><img src="http://ссылка на маленькую картинку" /></a>

    <
    script>
    var  
    newWindow;
    function 
    OpenWin() {
        
    window.status 'мое окно';
        
    strfeatures "top=100,left=50,width=300,height=270,toolbar=no";
        
    window.open("http://ссылка на большую картинку","bigger",strfeatures);
    }

    function 
    CloseWin() {
        if(
    newWindow) {
            
    newWindow.close();
            
    newWindow null;
            
    window.status "";
        }
    }
    </script>

    </body>
    </html>