用jQuery实现checkbox的全选和反选功能,当checkbox禁用时候不参与全选功能
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;paddin...
分类:
其他好文 时间:
2014-10-22 15:53:44
阅读次数:
154
在一个id为table的表格的tbody中,如果每一行的最后一列的checkbox没有被禁用,则把这行的背景色设置为红色。$( "#table>tbody>tr:has(td:last:has( :checkbox:enabled ) )" ).css( "background", "red" );
分类:
Web程序 时间:
2014-10-21 19:26:33
阅读次数:
172
在jquery中,可以使用用stopPropagation阻止事件冒泡,例如:$("table").click(function(){ alert("table");});$("tr").click(function(){ alert("tr");});$("td").click(functio.....
分类:
其他好文 时间:
2014-10-21 17:23:37
阅读次数:
199
#t1{ table-layout:fixed;}#t1 td{text-overflow:ellipsis;overflow:hidden;white-space: nowrap;}上面是css 1 2 3 顧客名 4 ...
分类:
其他好文 时间:
2014-10-20 16:48:16
阅读次数:
329
就算和Table一样去掉头部的那段代码也不能100%显示,原因很简单,你让div的height="100%",执行网页时,css先执行到,而整个网页中的内容还没有完全载入,是获取不到div外面的等的高度的,所以height="100%"也就不能如愿显示了。加上body{height:100%}就轻松...
分类:
其他好文 时间:
2014-10-19 14:10:04
阅读次数:
263
appendChild只能直接增加html元素标签,不能直接添加字符串元素。增加字符串必须配合document.createTextNode?? 实例: td.appendChild(a); td.appendChild(document.createTextNode(‘Paid: (‘ + method.toU...
分类:
移动开发 时间:
2014-10-18 09:54:08
阅读次数:
181
<td> <div style="width:100px;word-wrap:break-word;" > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx </div>? </td>?...
分类:
Web程序 时间:
2014-10-17 17:06:02
阅读次数:
153
在制作edm时会遇到需要设置td的高度为1px,如果td标签中有 时无论你怎么设置td的高度都没用,最小高度都是18px,
这时需要把表格中的 去掉。例:
原来是这样的:
需要改成下面这样:
把td中的 去掉,问题解决。...
分类:
其他好文 时间:
2014-10-16 16:43:42
阅读次数:
145
//html代码
{$doctor.reason|htmlspecialchars|trim|msubstr=0,35} //JS代码 // 使用live可以给动态添加的元素绑定事件 $('td span.doc_reason').live('click',function() { var eval...
分类:
Web程序 时间:
2014-10-15 15:23:16
阅读次数:
230
1.最速下降方向函数f(x)在点x处沿方向d的变化率可用方向导数来表示。对于可微函数,方向导数等于梯度与方向的内积,即:Df(x;d)=▽f(x)Td,因此,求函数f(x)在点x处的下降最快的方向,可归结为求解下列非线性规划:min▽f(x)Tds.t.||d||≤1当d=-▽f(x)/||▽f(x...
分类:
其他好文 时间:
2014-10-14 23:45:09
阅读次数:
479