当前位置: 编程技术>jquery
jQuery使任意div随意隐藏的代码举例
来源: 互联网 发布时间:2014-09-03
本文导语: 随意隐藏div的jquery代码,如下: div { background:#ece023; width:30px; height:40px; margin:2px; float:left; } a b c d e f $("div").click(function () { $(this).hide(1000); });
随意隐藏div的jquery代码,如下:
div { background:#ece023; width:30px; height:40px; margin:2px; float:left; }abcdef$("div").click(function () { $(this).hide(1000); });