
Linux
文章平均质量分 62
cuckoo_杜鹃
努力
展开
-
【精华篇】redhat5.5 中安装gcc(即configure:error:no acceptable cc found in $PATH的解决方案)
问题:1.在redhat5.5中如何安装gcc2.在redhat5.5中安装lynx时出现:configure:error:no acceptable cc found in $PATH解决方法;第一步:在redhat5.5的安装盘RHEL/5.5 I386 DVD中的server文件中找到下图各个的rpm文件安装包,然后在/mnt中创建CD目录,并把文件安装包依次拷贝原创 2017-03-29 11:02:35 · 3670 阅读 · 0 评论 -
jQuery1
菜鸟教程(runoob.com) /*演示jQuery的hide()函数,隐藏当前的html元素*/ $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }) }); /*演示jQuery的hide()函数,隐藏当前的html元素*/ $(document).ready(原创 2017-08-13 00:05:43 · 345 阅读 · 0 评论 -
jQuery2
菜鸟教程(runoob.com) $(document).ready(function(){ $("p").dblclick(function(){ $(this).hide(); }); }); 测试鼠标双击事件原创 2017-08-13 00:06:45 · 392 阅读 · 0 评论 -
jQuery3
菜鸟教程(runoob.com) $(document).ready(function(){ /*jQuery hide()方法*/ $("#testHide").click(function(){ $("#testValue").hide(); }); /*jQuery show()方法*/ $("#testShow").click(func原创 2017-08-13 00:07:19 · 406 阅读 · 0 评论 -
jQuery4
$(document).ready(function(){ /*测试fadeIn()方法*/ $("#showfadeIn").click(function(){ $("#div1").fadeIn(); $("#div2").fadeIn("slow"); $("#div3").fadeIn(3000); }); /*测试fadeOut()方法*/ $("#原创 2017-08-13 00:07:54 · 550 阅读 · 0 评论 -
jQuery5
/*jQuery slideDown()方法*/$(document).ready(function(){ $("#flipDown").click(function(){ $("#panel").slideDown("slow"); });}); /*jQuery slideUp()方法*/ $(document).ready(function(){ $("#fli原创 2017-08-13 00:08:37 · 477 阅读 · 0 评论