admin管理员组文章数量:1340993
I need to open new browser window using java script window.open, i have html page but it getting error as page not found.This is from jsf/icefaces.I have display the html page directly.Please help me...
JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(),
"window.open('printerFriendly.html','Print',,'width=300','height=200','menubar=yes',
'status=yes','location=yes','toolbar=yes','scrollbars=yes')");
I need to open new browser window using java script window.open, i have html page but it getting error as page not found.This is from jsf/icefaces.I have display the html page directly.Please help me...
JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(),
"window.open('printerFriendly.html','Print',,'width=300','height=200','menubar=yes',
'status=yes','location=yes','toolbar=yes','scrollbars=yes')");
Share
Improve this question
edited Sep 1, 2010 at 10:53
Rose
asked Sep 1, 2010 at 9:40
RoseRose
211 gold badge2 silver badges4 bronze badges
5 Answers
Reset to default 4Try something like this:
<FORM>
<INPUT type="button" value="New Window!" onClick="window.open('http://stackoverflow.','mywindow','width=400,height=200,toolbar=yes,
location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,
resizable=yes')">
</FORM>
It's in a form, but the JS code would be the same for any other link.
Opening a New Window With JavaScript
http://www.pageresource./jscript/jwinopen.htm
Javascript (JS) Tutorial - opening new browser window using open ...
http://www.hscripts./tutorials/javascript/open-method.php
window.open opens new browser window. If you getting page not found error, may be you should check that the page exists?
Your JavaScript is correct, you need to correct the URL ('printerFriendly.html').
Page Not Found is Page Not Found. Check if the URL is correct. Is printerFriendly.html
located in the same folder as your current page? It should be. Or you should provide the correct path.
本文标签: How to open new browser window using javascriptStack Overflow
版权声明:本文标题:How to open new browser window using javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743658907a2517607.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论