Dreamweaver:单击后图像或按钮发生变化

发布于 2024-10-09 06:26:26 字数 122 浏览 4 评论 0原文

您好,我正在使用 Dreamweaver 并尝试在单击图像或按钮后进行更改。本质上,我想要一张图片在被点击之前说“关注”,在点击之后说“取消关注”,就像 Twitter、Quora 等上发生的情况一样。

提前致谢!

Hi I am using Dreamweaver and trying to get an image or button to change after it is clicked on. Essentially, I want an image to say follow before it is clicked on and say unfollow after it is clicked on like happens on Twitter, Quora etc.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷月断魂刀 2024-10-16 06:26:26

@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>

@Spencer: Are you using a JavaScript framework (e.g. jQuery or mootools)? You could add or replace a class for the button when it is clicked so that it'll have a different style to the button in its default state.

Update: Here's some sample code to get you started (see it in action here: 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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文