您好我正在使用Dreamweaver并尝试在单击后更改图像或按钮。从本质上讲,我想要一个图像在点击之前说出来,并在点击之后说取消关注,就像在Twitter,Quora等上发生的那样。
提前致谢!
答案 0 :(得分:1)
@Spencer:您使用的是JavaScript框架(例如jQuery还是mootools)?您可以在单击按钮时为该按钮添加或替换该类,以便它在默认状态下具有与该按钮不同的样式。
更新:这里有一些示例代码可以帮助您入门(请参阅此处的操作:http://jsfiddle.net/5HqFw/) -
<!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">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>questions/4527859</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#button').click(function() {
$(this).toggleClass("clicked");
});
});
</script>
<style type="text/css">
#button {
border: 1px solid green;
display: block;
padding: 5px;
text-align: center;
width: 100px;
}
.default {
background-color: white;
color: green;
}
.clicked {
background-color: green;
color: white;
}
</style>
</head>
<body>
<p><a href="#" id="button" class="default">Button!</a></p>
</body>
</html>