我创建了一个数据库文件“accounts.accdb”,我在Eclipse中使用UCanAccess JDBC驱动程序来访问它。我可以访问它并使用我的服务器应用程序更新它但是当我关闭我的服务器应用程序时,数据库文件的内容返回到它们的初始值。我的代码如下,我尝试使用// For testing purposes
/*$('.link').on('click', function(e) {
if (e.currentTarget) {
console.log(e.currentTarget.tagName);
}
});*/
,但似乎没有任何区别。
label {
border: 3px dashed gold;
display: inline-block;
background: rgba(255,0,0,.2);
width: 150px;
height: 150px;
}
.link {
border: 3px solid red;
display: inline-block;
width: 75px;
height: 50px;
background: rgba(0,0,255,.2);
}
.button {
border: 3px solid orange;
display: inline-block;
height: 75px;
width: 50px;
}
.title {
border: 3px dotted blue;
}
#content {
display: none;
}
#content:target {
display: block;
color: red;
}