1 Star 0 Fork 0

rocket049/bash_test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
datalist.html 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
rocket049 提交于 2018-10-24 20:43 +08:00 . 2018年 10月 24日 星期三 20:43:51 CST
<!--
datalist.html
Copyright 2018 fuhz <fuhz@fuhz-Lenovo-XiaoXin-700-15ISK>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn" lang="zh-cn">
<head>
<title>datalist</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="generator" content="Geany 1.32" />
<script>
function show_opts(name){
var opts = document.getElementsByName(name);
var s="id:[";
for (var i=0;i<opts.length;i++){
if(i==0)
s = s + opts[i].value;
else
s = s +","+ opts[i].value;
}
s=s+"]";
alert(s);
}
function remove_opt(o){
var p=o.parentNode;
if (confirm("确定要删除本项?"))
p.removeChild(o);
}
var v=0;
function append_opt(){
var p = document.getElementById("group1");
var opt=document.createElement("option");
v+=1;
opt.value = v;
opt.setAttribute("name","opts");
//opt.addEventListener("click", function(){
// remove_opt(this);
// });
opt.onclick = function(){
remove_opt(opt);
};
opt.innerHTML="append "+v;
p.appendChild(opt);
}
</script>
</head>
<body>
输入:<input type="text" name="fname"/><br/>
<input type="button" value="submit" onclick='show_opts("opts")' /><br/>
<input type="button" value="append" onclick='append_opt()' /><br/>
<optgroup id="group1" label="依赖节点">
</optgroup>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rocket049/bash_test.git
git@gitee.com:rocket049/bash_test.git
rocket049
bash_test
bash_test
master

搜索帮助