点击按钮弹出网页

老虎说测试 前端技术字数 293阅读0分58秒阅读模式
摘要发现这个代码还是比较常用,现在收藏一下:

发现这个代码还是比较常用,现在收藏一下:

script  代码:文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

[php]文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

<script type="text/javascript">
<!--
function openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

[/php]文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

按钮代码:文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

[php]文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

<input name=""  type="button"  onClick="openBrWindow('弹出页面.html','弹出页面','width=513,height=440')" value="按钮名称" />文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

[/php]文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html 文章源自陈学虎-https://chenxuehu.com/article/2012/10/924.html

 
  • 版权声明:本文为原创文章,转载请附上原文出处链接及本声明。
  • 转载请注明:点击按钮弹出网页 | https://chenxuehu.com/article/2012/10/924.html