摘要: 参考网址:https://www.cnblogs.com/james641/p/5897259.html1.丢弃小数部分,保留整数部分 parseInt(7/2) 2.向上取整,有小数就整数部分加1 Math.ceil(7/2) 3,四舍五入. Math.round(7/2) 4,向下取整 Math 阅读全文
posted @ 2020-02-20 09:44 huiy_小溪 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: 1. 父子选择器 <div data-tab-panel-0 class="am-tab-panel am-active"> <div class="news_banner"> </div> <div class="news_li"> </div> </div> 需要选择class为news_li的 阅读全文
posted @ 2020-02-20 09:03 huiy_小溪 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: $(location).attr('href', '/index'); 阅读全文
posted @ 2020-02-20 08:57 huiy_小溪 阅读(163) 评论(0) 推荐(0) 编辑
摘要: $(".state").click(function() { var val=$(this).attr("id"); alert(val); }); $("#tbody td").click(function() { //这时能够获得正确的被点击对象 var tdID = $(this).attr( 阅读全文
posted @ 2020-02-20 08:50 huiy_小溪 阅读(3611) 评论(0) 推荐(0) 编辑
摘要: var resArray = new Array(1,2,3);$.post(prefix + '/save/res/', { 'roleID' : $('#roleID').val(), 'resArray' : resArray, }, function(result) { top.closeL 阅读全文
posted @ 2020-02-20 08:48 huiy_小溪 阅读(982) 评论(0) 推荐(0) 编辑
摘要: 用 return false, 不是 break。$.each(resArray, function(j, n) { if (1 == n) { return false; } }); 阅读全文
posted @ 2020-02-20 08:47 huiy_小溪 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Object Pascal 语言提供了非常丰富的数据类型,即简单类型( Simple)、字符串类型( String)、结构类型( Struct)、指针类型( Pointer)、函数和过程类型( Procedural)和变体类型( Variant)等.( 1)简单类型( Simple)简单类型包括实数类型( Real)和有序类型( Ordinal)。有序类型又包括整数类型、字符类型、布尔类型、枚举类... 阅读全文
posted @ 2020-02-20 08:43 huiy_小溪 阅读(951) 评论(0) 推荐(0) 编辑