摘要: //合并内容相同单元格function mergeTableCell(table_id, table_colnum) { _w_table_firsttd = ""; _w_table_currenttd = ""; _w_table_SpanNum = 0; _w_table_Obj = $("#" + table_id + " tr td:nth-child(" + table_colnum + ")"); _w_table_Obj.each(function(i) { if (i == 0 阅读全文
posted @ 2012-09-11 16:39 hedan 阅读(96) 评论(0) 推荐(0)
摘要: 编辑 /boot/grub/grub.conf去除rhgb quiet字样 阅读全文
posted @ 2012-09-09 18:27 hedan 阅读(132) 评论(0) 推荐(0)
摘要: 1 jQuery获取Select选择的Text和Value: 2 语法解释: 3 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 4 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text 5 3. var checkValue=$("#select_id").val(); //获取Select选择的Val 阅读全文
posted @ 2012-09-05 16:09 hedan 阅读(188) 评论(0) 推荐(0)
摘要: 1 $(function(){2 $('[id=对应元素的值]').each(function(){3 alert($(this).text());4 });5 6 }); 阅读全文
posted @ 2012-09-05 13:38 hedan 阅读(148) 评论(0) 推荐(0)
摘要: create or replace procedure p(date_year in number)is begin execute immediate ' select .......where .....= '||date_year||';end p; 阅读全文
posted @ 2012-09-05 13:35 hedan 阅读(96) 评论(0) 推荐(0)