1 Star 0 Fork 0

zz/ web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jq20230404.html 2.33 KB
一键复制 编辑 原始数据 按行查看 历史
zz 提交于 2023-04-11 19:15 . 01
<html>
<head>
<title>DOM操作-练习</title>
<script type="text/javascript" src="jQuery.js" ></script>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery实现表格操作</title>
<script src="jQuery.js" ></script>
<style>
#myTable td, th {
padding: 5px;
border: 1px solid black;
}
</style>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" id="myTable">
<thead>
<tr id="row1">
<th>书名</th>
<th>价格</th>
</tr>
</thead>
<tbody>
<tr id="row2">
<td>看得见风景的房间</td>
<td class="center">&yen;30.00</td>
</tr>
<tr id="row3">
<td>60个瞬间</td>
<td class="center">&yen;32.00</td>
</tr>
</tbody>
</table>
<input name="b1" type="button" value="增加一行" onclick="addRow()" />
<input name="b2" type="button" value="删除第2行" onclick="delRow()" />
<input name="b3" type="button" value="修改标题样式" onclick="updateRow()" />
<input name="b4" type="button" value="复制最后一行" onclick="copyRow()" />
<script>
function addRow() {
var newRow = $('<tr><td>三国</td><td>&yen;197.00</td></tr>');
$("#myTable tbody").append(newRow);
}
function delRow() {
$("#row3").remove();
}
function updateRow() {
$("#row1").css({
"background-color": "lightblue",
"color": "white"
});
}
function copyRow() {
var lastRow = $("#myTable tbody tr:last");
var newRow = lastRow.clone();
$("#myTable tbody").append(newRow);
}
</script>
</body>
</html>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/z439442/web.git
git@gitee.com:z439442/web.git
z439442
web
web
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385