• js


    //引入jquery 框架
    <script src="/style/js/jquery-1.10.2.min.js"></script>
    <script type="text/javascript">
        //初始化-1
        $(document).ready(function() {     


       })
      //或者初始化-2
    jQuery(function(){


    })


    $.getScript("c.js");//引入js脚本
    </script> 


    //select option
        $('.cpLogo').change(function(){
            var url = $(this).children('option:selected').attr('data-url');
            var url2 = $('.cpLogo option:selected').attr('data-url');
            var val = $(this).val();
        })


    //checkbox 全选 & 取消全选
    $('#ckbAll').click(function(){
           $("input[name='ckbOption[]']").prop("checked",$(this).prop('checked'));
     })
    //验证checkbox 选中
    $("input[name='ckbOption[]']:checked").length;


    //radio 选中的值
     $("input[name='templet']:checked").val();
    //radio 赋值
    $("input[name='templet'][value=1]").prop("checked",true);


    //判断元素是否存在
    $('#id').length     或者  document.getElementById('id')


    //多个对象绑定单个事件
    $('#setupButton,#msgButton,#avatarButton').bind('click',function(){})


    //单个对象绑定多个事件
    $('#setupButton').bind('click mouseover',function(){})


    //serialize 表单提交
    $.post("i.php",$('#form').serialize(),function(data){ })
  • 相关阅读:
    TP5.x——打印SQL语句
    PHP——运行shell命令|脚本
    Git——取消merge状态
    Typecho——简介及安装
    Vue——服务器上部署vue.js
    Node——服务器上安装Node.js
    PHP——敏感词过滤
    PHP——emjoin表情存入数据库
    什么是脚本语言
    全局拦截各种http请求
  • 原文地址:https://www.cnblogs.com/fonyer/p/8871439.html
Copyright © 2020-2023  润新知