随笔分类 - js
摘要:1.基本使用 1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> 6 <title>flv.js demo</title> 7 <sty
阅读全文
摘要:①单元格内容过长三个点显示 效果如下: 页面加入css: 1 <style> 2 .ui-jqgrid tr.jqgrow td { 3 white-space: nowrap; 4 text-overflow: ellipsis; 5 } 6 </style> ②表头自动换行 效果如下: 页面加入
阅读全文
摘要:1.删除某select下除第一个以外的option: 1 $("#selectId option:not(:first)").remove() 2.JS实现双击事件(双击删除本身) 1 function removeThis(obj){ 2 var rangeId = obj.id; 3 debug
阅读全文