0

您好我正在使用 Dreamweaver 并尝试在单击后更改图像或按钮。本质上,我希望一张图片在点击之前说关注,在点击之后说取消关注,就像在 Twitter、Quora 等上发生的那样。

提前致谢!

4

1 回答 1

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>
于 2010-12-24T19:06:21.980 回答