美文网首页
jQuery - 链式作用

jQuery - 链式作用

作者: 9979eb0cd854 | 来源:发表于2018-09-05 00:51 被阅读30次
image.png

通过 jQuery,可以把动作/方法链接在一起。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function()
  {
  $("button").click(function(){
    $("#p1").css("color","red").slideUp(2000).slideDown(2000);
  });
});
</script>
</head>
<body>

<p id="p1">菜鸟教程!!</p>
<button>点我</button>

</body>
</html>

相关文章

网友评论

      本文标题:jQuery - 链式作用

      本文链接:https://www.haomeiwen.com/subject/vvdowftx.html