js
rzrenyu
这个作者很懒,什么都没留下…
展开
-
AngularJS
1、ng过滤订单状态带html颜色 <td ng-bind-html="item.order_state|pay_order_filter"></td> $("input[name='charge_repeat_rid']").val(); 2、 ng过滤器 <td ng-bind...原创 2020-03-07 10:10:36 · 127 阅读 · 0 评论 -
各种js方法
1、placeholder 提示文字2、伪链接 和转义 <a href='javascript:void(0);' onclick='checkDetail(\""+list[i].buse_video_id+"\")'>查看</a>3、list 的长度 //alert(listTheme.length); 4、触发a链接 document.getElementByI...原创 2016-05-11 15:29:04 · 346 阅读 · 0 评论 -
jquery请求数据长时间loading等待效果
1.html#loading{ background-color: #17607d; height: 100%; width: 100%; position: fixed; z-index: 1; margin-top: 0px; top: 0px;}#loading-center{ width: 100%; height: 100%; positio原创 2017-06-29 16:35:30 · 4423 阅读 · 0 评论 -
jquery子窗口给父窗口元素赋值和获得值,子窗口调取父窗口方法,父窗口调取子窗口方法
1. 子窗口给父窗口元素赋值 /** * 修改主题详情 * @param id */function modifyTheme(id){$("#theme_id",window.parent.document).attr("value",id);//子窗口给父窗口元素赋值 }2. 子窗口获得父窗口的元素值原创 2017-06-08 15:26:15 · 14408 阅读 · 0 评论 -
datatable详细参数配置
$(document).ready(function() { oTable = $('#example').dataTable({ "oLanguage" : { // 汉化 "sProcessing": "处理中...", "sLengthMenu": "显示 _MENU_ 项结果", "原创 2017-07-28 14:41:54 · 697 阅读 · 0 评论 -
js重要注意事项
1、 parseInt :最多16位 document.write(parseInt("10111"+"11111"+"11111"+"1") + "")原创 2017-07-28 14:44:12 · 192 阅读 · 0 评论