当我在 JqueryMobile 中单击可点击项目时,如何更改可点击项目?

发布于 2024-12-09 15:36:08 字数 303 浏览 0 评论 0原文

我正在开发一个使用phonegap 和jquerymobile 的任务。

当我点击可点击项目时,我应该如何更改它们的颜色? 我写了下面的代码:

 $(".testbutton").click(function(){
    $(".testbutton").css("background-color","yellow");
    });

但是当我在上面释放鼠标后,背景颜色只会变成黄色。我希望每当我的鼠标单击该项目时它就会变成黄色,并在释放鼠标时恢复到原来的背景颜色。

有人可以帮忙吗?

I am developing a task in using phonegap and jquerymobile.

How should i do to change the color of a clickable item when i click on them?
I have written the code below:

 $(".testbutton").click(function(){
    $(".testbutton").css("background-color","yellow");
    });

But the background color will only change yellow after i release my mouse on it. I wan it to change to yellow whenever my mouse is clicked on tat item, and recover to its original background color when i release the mouse.

Can anyone please help?

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

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

发布评论

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

评论(1

灯下孤影 2024-12-16 15:36:08

这就是你想要实现的目标吗?

实例:

CSS:

.task-bg-color {
    background-color: yellow;   
}

JS:

$('#clickAndHold').mousedown(function() {
    $(this).children().addClass('task-bg-color');
    $('ul#tasks').listview('refresh');
});

$('#clickAndHold').mouseup(function() {
    $(this).children().removeClass('task-bg-color');
    $('ul#tasks').listview('refresh');
});

$('#clickAndStick').click(function() {
    $(this).children().addClass('task-bg-color');
    $('ul#tasks').listview('refresh');
});

$('#clickAndToggle').click(function() {
    if ($(this).children().hasClass('task-bg-color')) {
        $(this).children().removeClass('task-bg-color');
    } else {
        $(this).children().addClass('task-bg-color');
    }
    $('ul#tasks').listview('refresh');
});

HTML:

<div data-role="page" class="type-home">
    <div data-role="content">
        <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f" id="tasks">
            <li data-role="list-divider">Tasks (Background actions)</li>
            <li id="clickAndHold"><a href="#">Click & Hold</a></li>
            <li id="clickAndStick"><a href="#">Click & Stick</a></li>
            <li id="clickAndToggle"><a href="#">Click & Toggle</a></li>
        </ul>
    </div>
</div>

Is this what you're trying to accomplish?

Live Example:

CSS:

.task-bg-color {
    background-color: yellow;   
}

JS:

$('#clickAndHold').mousedown(function() {
    $(this).children().addClass('task-bg-color');
    $('ul#tasks').listview('refresh');
});

$('#clickAndHold').mouseup(function() {
    $(this).children().removeClass('task-bg-color');
    $('ul#tasks').listview('refresh');
});

$('#clickAndStick').click(function() {
    $(this).children().addClass('task-bg-color');
    $('ul#tasks').listview('refresh');
});

$('#clickAndToggle').click(function() {
    if ($(this).children().hasClass('task-bg-color')) {
        $(this).children().removeClass('task-bg-color');
    } else {
        $(this).children().addClass('task-bg-color');
    }
    $('ul#tasks').listview('refresh');
});

HTML:

<div data-role="page" class="type-home">
    <div data-role="content">
        <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f" id="tasks">
            <li data-role="list-divider">Tasks (Background actions)</li>
            <li id="clickAndHold"><a href="#">Click & Hold</a></li>
            <li id="clickAndStick"><a href="#">Click & Stick</a></li>
            <li id="clickAndToggle"><a href="#">Click & Toggle</a></li>
        </ul>
    </div>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文