`
文章列表
一、模版制作 1 设计 *.fields.xml文件,在此文件中定义好你要填充的参数。 <mergefield> <list>false</list> <name>$title</name> <description><![CDATA[]]></description> </mergefield> <mergefield> <list>false</list> <name>$serialNumb ...

js table sort

一、使用 <script src="${resourcePath}/js/tablesort.js" type="text/javascript"></script> <th width="7%" class="sortable-numeric">序号</th> <th width="7%" class="sortable-text" >报告编号</th> <th width ...

js table tree

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="utf-8" / ...
jQuery.tableDnD = { /** Keep hold of the current table being dragged */ currentTable : null, /** Keep hold of the current drag object if any */ dragObject: null, /** The current mouse offset */ mouseOffset: null, /** Remember the old value of Y so that we don't do ...
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>表单布局设计器 !</title> <link type="text/css" href="css/smoothness/jquery-ui-1.8.14.custom ...
DELIMITER $$ DROP PROCEDURE IF EXISTS `safetyw`.`pre_url`$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `pre_url`() begin declare pId bigint(20); declare pUrl varchar(80); declare no_more_departments int default 0; -- 定义游标 declare ordernumbers cursor for SELECT id,channel_ ...
1 列出数据库里所有的用户表名 select name from sysobjects where type='U' 2 获取表的列名及其属性 select * from information_schema.columns where table_name='log4j'
一、Sql Server2000 SELECT TableName=D.NAME,TableExplain=CASE WHEN A.COLORDER=1 THEN ISNULL(F.VALUE,' ') ELSE ' ' END, ColumnName=A.NAME,IsIdentity = COLUMNPROPERTY( A.ID,A.NAME,'ISIDENTITY'), IsPrimaryKey=CASE WHEN EXISTS(Select 1 FROM SYSOBJECTS Where XTYPE='PK ' AND PARENT_OBJ=A.ID AND NAME IN ...
/* Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { config.toolbar = [ ['Bold','Italic','Underline','Strike'], ['Font', ...
package com.safetys.crawler.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.ArrayList; import java.util.HashSet; import j ...
package com.craw; /* 以下是一个Java爬虫程序,它能从指定主页开始,按照指定的深度抓取该站点域名下的网页并维护简单索引。 参数:private static int webDepth = 2;//爬虫深度。主页的深度为1,设置深度后超过该深度的网页不会抓取 ...
package com.htmlparse.test; import java.net.URL; import org.apache.log4j.Logger; import org.htmlparser.Node; import org.htmlparser.NodeFilter; import org.htmlparser.Parser; import org.htmlparser.Tag; import org.htmlparser.beans.LinkBean; import org.htmlparser.filters.Nod ...

屏蔽鼠标右键

<script language="javascript"> function block(oEvent){ if(window.event){ oEvent = window.event; oEvent.returnValue = false; //取消默认事件 }else oEvent.preventDefault(); //取消默认事件 } document.oncontextmenu = block; </script>
var currentpos,timer; function initialize() { timer=setInterval("scrollwindow()",10); } function sc(){ clearInterval(timer); } function scrollwindow(){ currentpos=document.body.scrollTop; window.scroll(0,++currentpos); if (currentpos != document.body.scrollTop) ...
var expander = new Ext.ux.grid.RowExpander({ tpl : new Ext.XTemplate('<div class="x-grid-group-title" style="margin-left:10%">' + '<table class="displayTable">' + '<thead><tr><th>审核单位</th><th>审核人员</th><th> ...
Global site tag (gtag.js) - Google Analytics