- 浏览: 130280 次
- 性别:
- 来自: 青岛
最新评论
-
wangyu1221:
汉字字符和英文字符混排的话,英文字符貌似会被漏掉。
js EncodeUtf8
文章列表
几种内部排序算法总结!(冒泡排序、快速排序、直接插入排序、拆半插入排序、简单选择排序)
1 #include <iostream> 2 using namespace std; 3 4 /*///////////////////////////////////////////////////////////////////////// 5 以下为快速排序 6 //////////////////////////
* XMLHttpRequest Object Pool
*
* @author legend <legendsky@hotmail.com>
* @link http://www.ugia.cn/?p=85
* @Copyright www.ugia.cn
*/
var XMLHttp = {
_objPool: [],
_getInstance: function ()
{
for (var i = 0; i < this._objPool.length; i ++)
{
if (this._ ...
- 2009-07-22 09:04
- 浏览 970
- 评论(0)
网页可见区域宽:document.body.clientWidth
网页可见区域高:document.body.clientHeight
网页可见区域宽:document.body.offsetWidth (包括边线的宽)
网页可见区域高:document.body.offsetHeight (包括边线的宽)
网页正文全文宽:document.body.scrollWidth
网页正文全文高:document.body.scrollHeight
网页被卷去的高:document.body.scrollTop
网页被卷去的左:document.body.scrollLeft
网页正 ...
- 2009-05-12 09:39
- 浏览 906
- 评论(0)
//A是一个普通的函数 function A(a) { return a; }
//B是一个带函数返回值的函数 function B(b) { return function (c) { return b+c; } }
var x = A(10);
var y = B(20);
var z = B(30 ...
- 2009-02-05 08:53
- 浏览 756
- 评论(0)
iframe 父窗口和子窗口的调用方法
Posted on 2007-01-04 10:44 花 阅读(2179) 评论(1) 编辑 收藏 所属分类: WEB Design
父窗口调用子窗口 iframe_ID.iframe_document_object.object_attribute = attribute_value 例子 onClick="iframe_text.myH1.innerText='http://www.pint.com';" 子窗口调用父窗口 parent.parent_document_object.object_attribute = ...
- 2008-11-20 16:03
- 浏览 1534
- 评论(0)
解耦导航模式
function Onclick(evt)
{
evt=(evt)?evt:((event)?event:null);
if(evt)
{
var elem=(evt.target)?evt.target:((evt.srcElement)?evt.srcElement:null);
if(elem)
{
//document.getElementById()
...
- 2008-11-20 14:41
- 浏览 1158
- 评论(0)
用 javascript 处理 JSON
关键字: json javascript
因为JSON 是 javascript 的一个子集,所以,在javascript 中使用JSON是非常简单的。
js 代码
var myJSONObject = {"bindings": [
{"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"}, ...
- 2008-11-19 14:33
- 浏览 1311
- 评论(0)
<!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" lang="gb2312"><head><head><title> 演示实例:倒计时效果-精确到秒 </title>< ...
- 2008-11-13 09:28
- 浏览 992
- 评论(0)
<%@ Import Namespace="System.Data.SqlClient" %> <%@ Import Namespace="System.Drawing" %> <%@ Import Namespace="System.Drawing.Imaging" %> <%@ Import Namespace="System.IO" %> <script language="C#" runat="server" ...
- 2008-11-12 17:33
- 浏览 922
- 评论(0)
<%@ Register TagPrefix="uc1" TagName="wucCommon" Src="WebUserControl1.ascx" %>
<uc1:wucCommon id="Wuccommon1" runat="server"></uc1:wucCommon>
- 2008-11-11 15:34
- 浏览 871
- 评论(0)
<html>
<head>
<style type="text/css">
.FixedTitleRow
{
position: relative;
top: expression(this.offsetParent.scrollTop-2);
z-index: 10;
background-color: #E6ECF0;
}
.FixedTitleColumn
{
position: relative;
left: expression(this.parentElement.of ...
- 2008-11-04 13:27
- 浏览 2329
- 评论(0)
Create table #T (Class varchar(2),CallDate datetime, CallCount int)
insert into #T select '1','2005-8-8',40
union all select '1','2005-8-7',6
union all select '2','2005-8-8',77
union all select '3','2005-8-9',33
union all select '3','2005-8-8',9
union all select '3','2005-8-7',21
--动态SQL
declare @s ...
- 2008-11-04 10:53
- 浏览 1078
- 评论(0)
create table # (a varchar(1000))
declare @string varchar(1000)
set @string='(aa,aa);(bb,bb);(ccc,c);(dd,dd)'
set @string='insert # select '''+replace(@string,';','''as str union all select ''')+''''
exec(@string)
select * from #
drop ...
- 2008-11-04 10:50
- 浏览 819
- 评论(0)