我试图通过 jquery 切换发生多个事件。我想显示/隐藏一个元素以及使用相同的单击事件将样式应用于下面的元素。有任何想法吗?这甚至可能吗?
$(document).ready(function(){
$("button").click(function(){
$("p").toggle();},function(){
$("#write").css("background-color", "yellow");
});
});
我试图通过 jquery 切换发生多个事件。我想显示/隐藏一个元素以及使用相同的单击事件将样式应用于下面的元素。有任何想法吗?这甚至可能吗?
$(document).ready(function(){
$("button").click(function(){
$("p").toggle();},function(){
$("#write").css("background-color", "yellow");
});
});
我猜你想要这个。如需更多帮助,我会在那里。快乐编码!!!
$(document).ready(function () {
$("button").click(function () {
var isVisible = $("#me").toggle().is(":visible");
if (isVisible) {
$("#change").css("background-color", "yellow");
}
else
{
$("#change").css("background-color", "red");
}
});
});
<html>
<body>
<button>Toggle between hide() and show()</button>
<div id="me">show me then hide me </div>
<div id="change">New Look</div>
</body>
</html>
$(document).ready(function () {
$("button").click(function () {
$("#redcover").toggle();
$("#write").toggleClass('blrrrry', 1000);
});
});