当前位置:  技术问答>java相关

请问怎样实现当我打开某个网页时便实现全屏?

    来源: 互联网  发布时间:2017-03-13

    本文导语:  请问怎样用Java语句实现当我打开某个网页时便实现全屏?请给我一段源码,我是个门外汉:),谢了 | oNewWindow=window.open([sURL] [, sName] [, sFeatures] [, bReplace]) Parameters sURL Optional. String that specifies the...

请问怎样用Java语句实现当我打开某个网页时便实现全屏?请给我一段源码,我是个门外汉:),谢了

|

oNewWindow=window.open([sURL] [, sName] [, sFeatures] [, bReplace])

Parameters

sURL Optional. String that specifies the URL of the document to display. If no URL is specified, a new window with about:blank is displayed. 
sName Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a FORM or an A element. 
In Internet Explorer 5 and later, specifying the value _search opens sURL in the browser's search pane.
 
sFeatures Optional. String that specifies the window ornaments to display. The following features are supported: channelmode = { yes | no | 1 | 0 } Specifies whether to display the window in theater mode and show the channel band. The default is no. 
directories = { yes | no | 1 | 0 } Specifies whether to add directory buttons. The default is yes. 
fullscreen = { yes | no | 1 | 0 } Specifies whether to display the browser in a full-screen or normal window. The default is no, which displays the browser in a normal window. 
Use full-screen mode carefully. Because this mode hides the browser's title bar and menus, you should always provide a button or other visual clue to help the user close the window. ALT+F4 also closes the new window.
 
height = number Specifies the height of the window, in pixels. The minimum value is 100. 
left = number Specifies the left position, in pixels. This value is relative to the upper-left corner of the screen. 
location = { yes | no | 1 | 0 } Specifies whether to display the input field for entering URLs directly into the browser. The default is yes. 
menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar. The default is yes. 
resizable = { yes | no | 1 | 0 } Specifies whether to display resize handles at the corners of the window. The default is yes. 
scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal and vertical scroll bars. The default is yes. 
status = { yes | no | 1 | 0 } Specifies whether to add a status bar at the bottom of the window. The default is yes. 
titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar for the window. This parameter is ignored unless the caller is an html application or a trusted dialog box. The default is yes. 
toolbar = { yes | no | 1 | 0 } Specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available. The default is yes. 
top = number Specifies the top position, in pixels. This value is relative to the upper-left corner of the screen. 
width = number Sets the width of the window, in pixels. The minimum value is 100. 
 
bReplace Optional. Boolean that specifies whether the URL that is loaded into the new page should create a new entry in the window's browsing history or replace the current entry in the browsing history. If set to true, no new history entry is created. 


|
window.open(url,'','fullscreen=1');

|



  

|
做梦:)

|
function popwin(url,winname,status,left,top,width,height){
    newwin=window.open(url,winname,status);
    if (document.all){
        newwin.moveTo(left,top);
        if (width=="max") width=screen.width;
        if (height=="max") height=screen.height;
        newwin.resizeTo(width,height);
    }
}
function pop()
{
    popwin('url',"info",'fullscreen=no,scrollbars=yes',0,0,'max','max');
}

|
可以用delphi,vb,vc等编一个执行IE的执行程序,很简单的,这样打开就可以实现只执行内容的。

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。














站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3