常用jquery

//单击改变其链接的背景色,选中的背景色与其他链接的背景的色不相同,默认在iframe中打开第一个链接    
$(function(){
        initBindaClick();
    });
    function initBindaClick(){
        $(‘a[class^=b]‘).bind(‘click‘,function(){//记住,此处是class b
                $(‘a[class^=b]‘).removeClass().addClass(‘b_c‘);//class b_c
                $(this).removeClass().addClass(‘b_d‘);//class b_d
            });
        //默认打开第一个
        var src =$("#SecondIndex").val();
        //parent$ = parent.$;
        //parent$(‘#mainbody‘).attr(‘src‘, src);
        $(‘#mainbody‘).attr(‘src‘, src);
    }
获取系统时间,客户端法
<script>
      var now = new Date();
      var year=now.getFullYear();    
    var month = now.getMonth()+1 > 9?now.getMonth()+1:‘0‘+(now.getMonth()+1);    
    var day = now.getDate()+1 > 9?now.getDate():‘0‘+now.getDate();    
      var hours=now.getHours()+1>9?now.getHours():‘0‘+(now.getHours()+1);    
      var minutes=now.getMinutes()+1>9?now.getMinutes():‘0‘+(now.getMinutes());
    var strdate =year+"-"+month+"-"+day;
    strdate=strdate.substring(0,4)+strdate.substring(5,7)+strdate.substring(8,10)
    var strtime=hours+"-"+minutes;    
    strtime=strtime.substring(0,2)+strtime.substring(3,5);
      
</script>
//全选
<input type="checkbox" id="checkAll" value="1">全选/全部不选
<input type="checkbox" name="items" value="1">1
<input type="checkbox" name="items" value="2">2
<input type="checkbox" name="items" value="3">3
<input type="checkbox" name="items" value="4">4
<input type="checkbox" name="items" value="5">
<input type="button" onclic="show()" value="提示选择的">
<script>    
    $("#chekcAll").click(function(){
        if(this.checked){
            $("input[name=items]").attr("checked","checked");
            }
            else{
            $("input[name=items]").attr("checked",null);
            }
    })
    function show(){        
        var strIds=new Array();//声明一个存放id的数组            
            $("input[name=items]").each(function (i,d){
                if (d.checked) {
                strIds.push(d.value);
                }
            })
            if(strIds.length<1)
                alert("您没有选中项!");
            else{
                var ids=strIds.join(",");
                alert("你选中的字符串有:"+ids);
                }
                
                    
        }
    
</script>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。