//jquery滚动条滚动底部时间

    $(window).scroll(function () {

        if ($(document).height() - $(window).height() == $(document).scrollTop()) {
    
        }

    })
    //jquery判断checkbox是否被选中

    $("#cb1").click(function () {

        if ($(this).prop('checked')) {

            alert(1111);

        } else {

            alert(2222222);

        }


    })

    $("[class=gwc]:checked").length //选中个数


    parseInt()//转换成整数类型
    


    parseFloat()//转换成浮点类型
    var str = "3.14";
    var num = parseFloat(str);
    console.log(num);
  


    location.reload()//;重新加载此页面




    [removed].href = "xxxxx";//页面跳转指定位置


    $("#usernum", window.parent.document).val(usernum);//iframe窗口控制父级元素

    //获取js对象长度

    const obj = {
      name: 'John',
      age: 30,
      city: 'New York'
    };

    const length = Object.keys(obj).length;
    console.log(length); // 输出: 3

点赞(0)

评论列表 共有 0 条评论

暂无评论
返回
顶部