带额外toggle()功能的jquery库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带额外toggle()功能的jquery库相关的知识,希望对你有一定的参考价值。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script type="text/javascript" src="jquery.js"></script> <!-- 此处的jquery必须是带有toggle额外功能的库 (百度云里有这个库)-->

</head>
<body>
<button>请点击这里,来切换不同的背景颜色</button>
<p>给这段文字切换不同的背景颜色</p>
<script type="text/javascript">

$(function(){
$("button").toggle(
function(){$("p").css("color","red")},

function(){$("p").css("color","green")},

function(){$("p").css("color","yellow")}//此处不能加逗号
);
});
</script>
</body>
</html>

以上是关于带额外toggle()功能的jquery库的主要内容,如果未能解决你的问题,请参考以下文章

jQuery--bind()hover()toggle()

锋利的Jquery读书笔记四

jquery 数据表:添加额外的列

mingw-w64线程模型:posix vs win32(posix允许使用c++11的std:: thread,但要带一个winpthreads,可能需要额外dll)

将额外参数传递给jquery ajax promise回调[重复]

克隆 JQuery 后添加额外的输入文本