我用 HTML 制作了一个表格,并添加了一个删除按钮,以便它删除表格中最后记录的行。
删除按钮有效,但当我刷新页面时,编辑内容消失了,一切都回到了原始状态。
我怎样才能让它在用户编辑页面时永久改变?
这是一个演示:http: //jsfiddle.net/objcLfxd/#&togetherjs=9ai74rb5DH
如果那不起作用:
body {
background-color: #ffffff;
font-family: candara, monospace;
text-align: center;
font-weight: bold;
margin-top: 5px;
text-transform: uppercase;
height: 600px;
width: 1000px;
color: #1b1186;
}
#DELETE {
background-color: #1b1186;
width: 250px;
color: white;
margin-top: 50px;
}
#DELETE:hover {
background-color: #ff4625;
cursor: pointer;
}
button {
background-color: #1b1186;
border-radius: 0px;
border: 0px #cccccc;
font-family: candara, monospace;
font-weight: bold;
margin-top: 15px;
color: #ffffff;
text-align: center;
font-size: 18px;
padding: 10px;
width: 200px;
transition: all 1s;
cursor: pointer;
text-transform: uppercase;
display: inline-block;
text-decoration: none;
}
button:hover {
background-color: #fff06d;
color: black;
padding-right: 25px;
padding-left: 25px;
}
table {
border: 5px, #1b1186
}
函数式编程
繁星coding
守着一只汪
慕婉清6462132
相关分类