随笔分类 - jQuery
摘要:RadiojQuery("input[type=checkbox][name='fbCqscsf.cqzdycqk']").not("[value=1]").attr("checked","");var item = $('input[@name=items][@checked]').val();$...
阅读全文
摘要:在JQuery中,$是JQuery的别名,所有使用$的地方也都可以使用JQuery来替换,如$('#msg')等同于JQuery('#msg') 的写法。然而,当我们引入多个js库后,在另外一个js库中也定义了$符号的话,那么我们在使用$符号时就发生了冲突。下面以引入两个库文件 jquery.js和prototype.js为例来进行说明。第一种情况:jquery.js在prototype.js之后进行引入,如: < script src = " prototype.js " type = " text/javascript &
阅读全文
摘要:可收缩的面板(像Gmai收件箱面板l)。可以应用在文章、新闻评论列表中。见图效果:js:<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { //hide message_body after the first one $(".message_list .message_bo
阅读全文
摘要:<script type="text/javascript" language="javascript"> $(document).ready(function () { $(".menu a").hover(function () { $(this).next("em").animate({ opacity: "show", top: "-75" }, "slow"); }, function () { $(this).next("
阅读全文
摘要:<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $(".pane-list li").click(function () { window.location = $(this).find("a").attr("href")
阅读全文
摘要:jQuery:<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> <script type="text/javascript" language="javascript"> $(document).ready(function () { $(".accordion h3:first").addClass("active"); $(".acco
阅读全文
摘要:jS:<script type="text/javascript" language="javascript"> $(document).ready(function () { $(".pane .delete").click(function () { $(this).parents(".pane").animate({ opacity: 'hide' }, "slow"); }); }); </script>HTML: <div class=&q
阅读全文
摘要:<script type="text/javascript" language="javascript"> function IbtnEnter_onclick() { checklogin(); return false; } function checklogin() { if ($("#TxtUserName").val() == "") { alert("用户名不能为空!"); $("#TxtUserName")...
阅读全文