我有一个小问题,我发誓应该工作......这似乎是一个愚蠢的问题......但在这里......我想要一个我创建的 div 作为一个按钮......它无论如何都不想要当我点击它时改变它的背景(给出一个按钮的效果)这是我的代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
#button1 {
width:100px;
height:50px;
background-image:url(normalbutton.jpg)
}
</style>
</head>
<body class="asd">
<div id="container">
<a href="#">
<div id="button1" onmousedown="document.getElementById("button1").style.backgroundImage='url(onmousedownbutton.jpg)'"></div></a>
</body>
</html>