- 浏览: 334347 次
- 性别:
- 来自: 深圳
最新评论
-
palmtale:
我居然看了一篇 2013年的文章, 整比你落后了6年。 说地对 ...
关于大数据各个级别选择(Pandas、Hadoop) -
jiiiang400:
sdfgs
EXT--Ext.form.field.HtmlEditor组件编辑器模式示例
文章列表
<html>
<head>
<title>File Input</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style>
body{font-size:13px;}
.box{border:1px solid #eee; ...
开发者博客:www.developsearch.com
警告(alert)
在访问网站的时候,你遇到过这样的情况吗?“咚”的一声,一个小窗口出现在你面前,上面写着一段警示性的文字,或是其它的提示信息。如果你不点击确定,你就不能对网页做任何 ...
function getXMLNode( str_xmlUrl, str_dirPath )
{
if( !str_xmlUrl || !str_dirPath )
return false;
var _bool_IE = ( window.ActiveXObject ? true : false );
var _obj_xmlDoc;
if( _bool_IE )
_obj_xmlDoc = new ActiveXObject( 'Microso ...
开发者博客:www.developsearch.com
js/jquery取得iframe中元素的几种方法+js/jquery获取iframe中的对象
在iframe子页面获取父页面元素代码如下:
$('#objId', parent.document);// 搞定...
在父页面 获取iframe子页面的元素代码如下:
$("#objid",document.frames('iframename').document)
$(document.getElementById('iframeId').contentWindow.document.bod ...
1.应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。
2.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。
3.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:
select id from t where num is null
可以在num上设置默认值0,确保表中num列没有null值,然后这样查询:
select id from t where num=0
...
开发者博客:www.developsearch.com
Extjs2.x 实现同步方法 Ext.Ajax.request实现同步请求是通过修改ext-base.js中的Ext.lib.Ajax.request来实现同步请求:
/**
Adding a synchronous request to the Ext asynchronous only mode of operation.
History: coded from Ext 2.2.
Additional configs.
@param {Object} options
@config { ...
开发者博客:www.developsearch.com
定时反复执行,就是一个死循环,一直操作setInterval('aa()',1000);
创建定时器,定时触发,触发完了就没事了。setTimeout("aa()",1000);清除定时器
var aaa = setTimeout("aa()",1000);clearTimeout(aaa); 清除定时器
此方法只能获取iframe里面的元素,不能调用子窗体或父窗体的函数document.getElementById('iframeid').contentWindow.document.getElementById('id') 如果需要调用函数:需使用js 父窗体调用子窗体方法window.frames["edthtml"].window.getHtmlValue()js子窗体调用父窗体方法window.parent.submitdata(html);
开发者博客:www.developsearch.com
<html>
<head></head>
<style>
table
{
border-collapse:collapse;
table-layout:fixed;
overflow:hidden;
}
td
{
overflow:hidden;
white-space: nowrap;
}
--></mce:style><style mce_bogus="1">table
{
border-collapse:col ...
<!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="text/html; chars ...
开发者博客:www.developsearch.com
查询最近2小时跟新的记录Select * From book Where update_time > sysdate-2/24
sysdate+(5/24/60/60) 在系统时间基础上延迟5秒
sysdate-(5/24/60/60) 在系统时间基础上减去5秒sysdate+5/24/60 在系统时间基础上延 ...
JS去除空格的方法目前共有12种:
实现1
String.prototype.trim = function() { return this.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); }看起来不怎么样, 动用了两次正则替换,实际速度非常惊人,主要得益于浏览器的内部优化。一个著名的例 ...
开发者博客:www.developsearch.com
Oracle 提供的数据同步方案:1,比较原始的,触发器/Job + DBLINK的方式,可同步和定时刷新。2,物化视图刷新的方式,有增量刷新和完全刷新两种模式,定时刷新。3,高级复制,分为多主复制和 ...
开发者博客:www.developsearch.com
create database cstp;use cstp;/*1:建立学生表*/create table student ( 学号 char(3) primary key, 姓名 char(4), 性别 char(2), 年龄 int, 班级 char(5));insert into student values('108','曾华','男',19,'95033');insert into student values('105','匡明','男',20,'95031');insert into st ...
ClientTcpSend.java 客户端发送类
package com.yjf.test;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.net.InetSocketAddress;
import java.net.Socket;
public class ClientTcpSend {
public static String clientip = "127.0.0.1" ...