1 Star 0 Fork 0

蓝莓铁匠/js-practice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
9.4综合应用.html 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
蓝莓铁匠 提交于 2015-09-29 10:38 . add all
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script language="JavaScript">
function openWin(){
var dw;
dw=window.open();
dw.document.open();
dw.document.write("<html><head><title>一个新的窗口</title>");
dw.document.write("</head>");
dw.document.write("<body>");
dw.document.write("<img name='i1' src='img/docs-github.png'><br />");
dw.document.write("这里是写入的新内容<br />");
dw.document.write("</body></html>");
dw.document.close();
}
function addSelect(){
var sel=document.createElement("select");
sel.options[0]=new Option("篮球","");
sel.options[1]=new Option("足球","");
sel.options[2]=new Option("排球","");
sel.options[3]=new Option("乒乓球","");
document.form1.appendChild(sel);
}
</script>
</head>
<body>
<input type="button" value="打开一个新文档" onclick="openWin();" />
<form name="form1">
<input type="button" name="btn1" value="动态添加下拉菜单" onclick="addSelect();" />
</form>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mithy/js-practice.git
git@gitee.com:mithy/js-practice.git
mithy
js-practice
js-practice
master

搜索帮助