当我在 JqueryMobile 中单击可点击项目时,如何更改可点击项目?
我正在开发一个使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是你想要实现的目标吗?
实例:
CSS:
JS:
HTML:
Is this what you're trying to accomplish?
Live Example:
CSS:
JS:
HTML: