WEB开发网
开发学院网页设计JavaScript javascript手冊-o 阅读

javascript手冊-o

 2007-11-27 17:51:32 来源:WEB开发网   
核心提示:onBlur event handlerA blur event occurs when a select, text, or textarea field on a form loses focus. The onBlur event handler executes JavaScript code when a b

onBlur event handler

A blur event occurs when a select, text, or textarea field on a form loses focus. The onBlur event handler executes JavaScript code when a blur event occurs.

See the relevant objects for the onBlur 语法.

Event Handler of

select, text, textarea

例子

In the following example, userName is a required text field. When a user attempts to leave the field, the onBlur event handler calls the required() function to confirm that userName has a legal value.

<INPUT TYPE=text VALUE= NAME=userName onBlur=required(this.value)>

相关

  • onChange , onFocus event handlers

    onChange event handler

    A change event occurs when a select, text, or textarea field loses focus and its value has been modified. The onChange event handler executes JavaScript code when a change event occurs.

    Use the onChange event handler to validate data after it is modified by a user.

    See the relevant objects for the onChange 语法.

    Event Handler of

    select, text, textarea

    例子

    In the following example, userName is a text field. When a user attempts to leave the field, the onBlur event handler calls the checkValue() function to confirm that userName has a legal value.

    <INPUT TYPE=text VALUE= NAME=userName onBlur=checkValue(this.value)>

    相关

  • onBlur , onFocus event handlers

    onClick event handler

    A click event occurs when an object on a form is clicked. The onClick event handler executes JavaScript code when a click event occurs.

    See the relevant objects for the onClick 语法.

    Event Handler of

    button, checkbox, radio, link, reset, submit

    例子

    For example, suppose you have created a JavaScript function called compute(). You can execute the compute() function when the user clicks a button by calling the function in the onClick event handler, as follows:

    <INPUT TYPE=button VALUE=Calculate onClick=compute(this.form)>

    In the above example, the keyword this refers to the current object; in this case, the Calculate button. The construct this.form refers to the form containing the button.

    For another example, suppose you have created a JavaScript function called pickRandomURL() that lets you select a URL at random. You can use the onClick event handler of a link to specify a value for the HREF attribute of the <A> tag dynamically, as shown in the following example:

    Go!

    In the above example, the onMouseOver event handler specifies a custom message for the Navigator status bar when the user places the mouse pointer over the Go! anchor. As this example shows, you must return true to set the window.status property in the onMouseOver event handler.


    onFocus event handler

    A focus event occurs when a field receives input focus by tabbing with the keyboard or clicking with the mouse. Selecting within a field results in a select event, not a focus event. The onFocus event handler executes JavaScript code when a focus event occurs.

    See the relevant objects for the onFocus 语法.

    Event Handler of

    select, text, textarea

    例子

    The following example uses an onFocus handler in the valueField textarea object to call the valueCheck() function.

    <INPUT TYPE=textarea VALUE= NAME=valueField onFocus=valueCheck()>

    相关

  • onBlur , onChange event handlers

    onLoad event handler

    A load event occurs when Navigator finishes loading a window or all frames within a <FRAMESET>. The onLoad event handler executes JavaScript code when a load event occurs.

    Use the onLoad event handler within either the <BODY> or the <FRAMESET> tag, for example, <BODY onLoad=...>.

    In a <FRAMESET> and <FRAME> relationship, an onLoad event within a frame (placed in the <BODY> tag) occurs before an onLoad event within the <FRAMESET> (placed in the <FRAMESET> tag).

    Event Handler of

    window

    例子

    In the following example, the onLoad event handler displays a greeting message after a web page is loaded.

    <BODY onLoad=window.alert(Welcome to the Brave New World home page!)>

    相关

    onUnload event handler


    onMouseOver event handler

    A mouseOver event occurs once each time the mouse pointer moves over an object from outside that object. The onMouseOver event handler executes JavaScript code when a mouseOver event occurs.

    You must return true within the event handler if you want to set the status or defaultStatus properties with the onMouseOver event handler.

    See the relevant objects for the onMouseOver 语法.

    Event Handler of

    link

    例子

    By default, the HREF value of an anchor displays in the status bar at the bottom of the Navigator when a user places the mouse pointer over the anchor. In the following example, the onMouseOver event handler provides the custom message Click this if you dare.

    Click me

    See onClick for an example of using onMouseOver when the <A> tags HREF attribute is set dynamically.


    onSelect event handler

    A select event occurs when a user selects some of the text within a text or textarea field. The onSelect event handler executes JavaScript code when a select event occurs.

    See the relevant objects for the onSelect 语法.

    Event Handler of

    text, textarea

    例子

    The following example uses an onSelect handler in the valueField text object to call the selectState() function.

    <INPUT TYPE=text VALUE= NAME=valueField onSelect=selectState()>

    onSubmit event handler

    A submit event occurs when a user submits a form. The onSubmit event handler executes JavaScript code when a submit event occurs.

    You can use the onSubmit event handler to prevent a form from being submitted; to do so, put a return statement that returns false in the event handler. Any other returned value lets the form submit. If you omit the return statement, the form is submitted.

    See the relevant objects for the onSubmit 语法.

    Event Handler of

    form

    例子

    In the following example, the onSubmit event handler calls the formData() function to evaluate the data being submitted. If the data is valid, the form is submitted; otherwise, the form is not submitted.

    form.onSubmit=return formData(this)

    相关 the 例子 for the form object.

    相关

  • submit object
  • submit method

    onUnload event handler

    An unload event occurs when you exit a document. The onUnload event handler executes JavaScript code when an unload event occurs.

    Use the onUnload event handler within either the <BODY> or the <FRAMESET> tag, for example, <BODY onUnload=...>.

    In a <FRAMESET> and <FRAME> relationship, an onUnload event within a frame (placed in the <BODY> tag) occurs before an onUnload event within the <FRAMESET> (placed in the <FRAMESET> tag).

    Event Handler of

    window

    例子

    In the following example, the onUnload event handler calls the cleanUp() function to perform some shut down processing when the user exits a web page:

    <BODY onUnload=cleanUp()>

    相关

    onLoad event handler


    open method (document object)

    Opens a stream to collect the output of write or writeln methods.

    语法

    document.open([mimeType])

    mimeType specifies any of the following document types:

       text/htm   text/plain   image/gif   image/jpeg   image/x-bitmap   plugIn
    plugIn is any two-part plug-in MIME type that Netscape supports.

    Method of

    document

    Description

    The open method opens a stream to collect the output of write or writeln methods. If the mimeType is text or image, the stream is opened to layout; otherwise, the stream is opened to a plug-in. If a document exists in the target window, the open method clears it.

    End the stream by using the document.close() method. The close method causes text or images that were sent to layout to display. After using document.close(), issue document.open() again when you want to begin another output stream.

    mimeType is an optional argument that specifies the type of document to which you are writing. If you do not specify a mimeType, the open method assumes text/htm by default.

    Following is a description of mimeType:

  • text/htm specifies a document containing ASCII text with htm formatting.
  • text/plain specifies a document containing plain ASCII text with end-of-line characters to delimit displayed lines.
  • image/gif specifies a document with encoded bytes constituting a GIF header and pixel data.
  • image/jpeg specifies a document with encoded bytes constituting a JPEG header and pixel data.
  • image/x-bitmap specifies a document with encoded bytes constituting a bitmap header and pixel data.
  • plugIn loads the specified plug-in and uses it as the destination for write and writeln methods. For example, x-world/vrml loads the VR Scout VRML plug-in from Chaco Communications, and application/x-director loads the Macromedia Shockwave plug-in.

    例子

    The following function calls document.open() to open a stream before issuing a write method:
    function windowWriter1() {   var myString = Hello, world!   msgWindow.document.open()   msgWindow.document.write(<P> + myString)   msgWindow.document.close()}
    In the following example, the probePlugIn() function determines whether a user has the Shockwave plug-in installed:
    function probePlugIn(mimeType) {   var havePlugIn = false   var tiny = window.open(, teensy, width=1,height=1)   if (tiny != null) {      if (tiny.document.open(mimeType) != null)         havePlugIn = true      tiny.close()   }   return havePlugIn}var haveShockwavePlugIn = probePlugIn(application/x-director)

    相关

  • clear, close, write, writeln methods

    open method (window object)

    Opens a new web browser window.

    语法

    [windowVar = ][window].open(URL, windowName, [windowFeatures])

    windowVar is the name of a new window. Use this variable when referring to a windows properties, methods, and containership.
    URL specifies the URL to open in the new window. See the location object for a description of the URL components.
    windowName is the window name to use in the TARGET attribute of a <FORM> or <A> tag. windowName can contain only alphanumeric or underscore (_) characters.
    windowFeatures is a comma-separated list of any of the following options and values:

       toolbar[=yes|no]|[=1|0]   location[=yes|no]|[=1|0]   directories[=yes|no]|[=1|0]   status[=yes|no]|[=1|0]   menubar[=yes|no]|[=1|0]   scrollbars[=yes|no]|[=1|0]   resizable[=yes|no]|[=1|0]   width=pixels   height=pixels

    You may use any subset of these options. Separate options with a comma. Do not put spaces between the options.

    pixels is a positive integer specifying the dimension in pixels.

    Method of

    window

    Description

    The open method opens a new web browser window on the client, similar to choosing New Web Browser from the File menu of the Navigator. The URL argument specifies the URL contained by the new window. If URL is an empty string, a new, empty window is created.

    In event handlers, you must specify window.open() instead of simply using open(). Due to the scoping of static objects in JavaScript, a call to open() without specifying an object name is equivalent to document.open().

    windowFeatures is an optional, comma-separated list of options for the new window. The boolean windowFeatures options are set to true if they are specified without values, or as yes or 1. For example, open(, messageWindow, toolbar) and open(, messageWindow, toolbar=1) both set the toolbar option to true. If windowName does not specify an existing window and you do not specify windowFeatures, all boolean windowFeatures are true by default. If you specify any item in windowFeatures, all other Boolean windowFeatures are false unless you explicitly specify them.

    Following is a description of the windowFeatures:

  • toolbar creates the standard Navigator toolbar, with buttons such as Back and Forward, if true
  • location creates a Location entry field, if true
  • directories creates the standard Navigator directory buttons, such as Whats New and Whats Cool, if true
  • status creates the status bar at the bottom of the window, if true
  • menubar creates the menu at the top of the window, if true
  • scrollbars creates horizontal and vertical scrollbars when the document grows larger than the window dimensions, if true
  • resizable allows a user to resize the window, if true
  • width specifies the width of the window in pixels
  • height specifies the height of the window in pixels

    例子

    In the following example, the windowOpener function opens a window and uses write methods to display a message:

    function windowOpener() {   msgWindow=window.open(,displayWindow,menubar=yes)   msgWindow.document.write      (<HEAD><TITLE>Message window</TITLE></HEAD>)   msgWindow.document.write      (<CENTER><BIG><B>Hello, world!</B></BIG></CENTER>)}

    The following is an onClick event handler that opens a new client window displaying the content specified in the file sesame.htm. The window opens with the specified option settings; all other options are false because they are not specified.

    <div class="bdlikebutton"></div> <div id="a_l_2" class="ad_b6"></div> </div> <div class="clear"></div> <!--分页--> <div class="clear"></div> <div class="textTags"> <h3>Tags:<a href="/search-avascript.html" target="_blank">avascript</a> </h3><span>编辑录入:coldstar [<a href="javascript:copyURL();">复制链接</a>] [<a href="javascript:window.print();">打 印</a>]</span> </div> <div class="clear"></div> <div id="a_l_3" class="news_down"></div> <div class="clear"></div> <div class="box_4" id="keywords"><span> <a href="javascript:;">相关阅读</a></span></div> <div class="two_list"> <ul><li>&rsaquo;&rsaquo;<a href="/tuxing/photoshop/98193.html" title="10款效果超赞免费photoshop笔刷">10款效果超赞免费photoshop笔刷</a></li> <li>&rsaquo;&rsaquo;<a href="/anquan/security/97997.html" title="10大方法让ADSL用户防御黑客攻击">10大方法让ADSL用户防御黑客攻击</a></li> <li>&rsaquo;&rsaquo;<a href="/os/windows8/97966.html" title="10种实用方法关闭Windows 8 系统的">10种实用方法关闭Windows 8 系统的</a></li> <li>&rsaquo;&rsaquo;<a href="/shujuku/mysql/97819.html" title="10大关系数据库SQL注入工具一览">10大关系数据库SQL注入工具一览</a></li> <li>&rsaquo;&rsaquo;<a href="/yunying/mianfeiziyuan/97721.html" title="10大简单易用的免费在线HTML编辑器">10大简单易用的免费在线HTML编辑器</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/pad/93944.html" title="10条使用iPad时的必备技巧">10条使用iPad时的必备技巧</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/iphone/2394.html" title="10款提高效率的iPhone应用程序">10款提高效率的iPhone应用程序</a></li> <li>&rsaquo;&rsaquo;<a href="/develop/c/24662.html" title="10个鲜为人知的C#关键字">10个鲜为人知的C#关键字</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/36779.html" title="10步配好Android开发环境">10步配好Android开发环境</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/48156.html" title="10 款wap站长必知的免费 Android 应用">10 款wap站长必知的免费 Android 应用</a></li> <li>&rsaquo;&rsaquo;<a href="/os/unix/11678.html" title="10 大最流行的Linux服务器发行版">10 大最流行的Linux服务器发行版</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/iphone/91412.html" title="10款在iPhone上获得重生的PC游戏">10款在iPhone上获得重生的PC游戏</a></li> </ul> </div> <div class="clear"></div> <div id="pre_and_next" class="box_5"> <ul> <li><a onclick='window.open("http://www1.baidu.com/baidu?word=&#106avascript手冊-o")' href="javascript:"><img src="/skins/icons/icon_baidu.gif" align="absmiddle" border="0" />中查找“&#106avascript手冊-o”更多相关内容</a></li> <li><a onclick='window.open("http://www.google.com.hk/search?q=&#106avascript手冊-o&client=pub-7181357378968076&forid=1&prog=aff&ie=GB2312&oe=GB2312&hl=zh-CN")' href="javascript:"><img src="/skins/icons/icon_google.gif" align="absmiddle" border="0" />中查找“&#106avascript手冊-o”更多相关内容</a></li> <li><strong class="c_blue">上一篇:</strong><a href="/sheji/js/5143.html">&#106avascript手冊-m&n</a></li> <li><strong class="c_blue">下一篇:</strong><a href="/sheji/js/5145.html">&#106avascript手冊-p&q</a></li> </ul> </div> <div class="box_9"> <h5>更多精彩</h5> <ul><li class="listimg1"><a href="/os/windows7/16791.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010913/201091383437567.jpg" alt="教你换掉windows 7任务栏的输入法图标" title="教你换掉windows 7任务栏的输入法图标" width="110" height="80" border="0" /></a><h6><a href="/os/windows7/16791.html" title="教你换掉windows 7任务栏的输入法图标">教你换掉windows 7任务栏的输入法图标</a></h6></li> <li class="listimg1"><a href="/os/unix/73447.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010927/20109278222123.gif" alt="使用 SSH 建立安全通信信道" title="使用 SSH 建立安全通信信道" width="110" height="80" border="0" /></a><h6><a href="/os/unix/73447.html" title="使用 SSH 建立安全通信信道">使用 SSH 建立安全通信信道</a></h6></li> <li class="listimg1"><a href="/tuxing/fireworks/91941.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010929/201092993117896.jpg" alt="Fireworks制作多样式实用网页按钮" title="Fireworks制作多样式实用网页按钮" width="110" height="80" border="0" /></a><h6><a href="/tuxing/fireworks/91941.html" title="Fireworks制作多样式实用网页按钮">Fireworks制作多样式实用网页按钮</a></h6></li> <li class="listimg1"><a href="/tuxing/photoshop/19739.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010912/2010912203934423.jpg" alt="Photoshop鼠绘实例:可爱的斑点狗" title="Photoshop鼠绘实例:可爱的斑点狗" width="110" height="80" border="0" /></a><h6><a href="/tuxing/photoshop/19739.html" title="Photoshop鼠绘实例:可爱的斑点狗">Photoshop鼠绘实例:可爱的斑点狗</a></h6></li> <li class="listimg1"><a href="/ruanjian/wangluo/6264.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010102/2010102102739648.jpg" alt="Super Finder - 全文搜索好帮手" title="Super Finder - 全文搜索好帮手" width="110" height="80" border="0" /></a><h6><a href="/ruanjian/wangluo/6264.html" title="Super Finder - 全文搜索好帮手">Super Finder - 全文搜索好帮手</a></h6></li> </ul> </div> <div class="box_10"> <h5>赞助商链接</h5> <p><span id="a_l_4"><img src="/images/loading.gif" /></span></p> </div> </div> </div><!--内容区域结束--> <div class="sbox_2 f_r"> <div id="a_r_1" class="ad_side"></div> <div class="bk_6"></div> <div class="clear"></div> <div class="tw_list"> <h5>热点阅读</h5> <ul><li> <a href="/web/jsp/65380.html">解决运行eclipse内存不足的问题</a></li> <li> <a href="/shouji/android/96304.html">Android基于SackOfViewAdapter类实现类似状...</a></li> <li> <a href="/sheji/divcss/95317.html">ul li 横向排列不换行的做法</a></li> <li> <a href="/develop/java/95223.html">javadoc中的{@link }和{@linkplain }标签</a></li> <li> <a href="/fuwuqi/qita/97506.html">通过远程管理更改ESXi主机root用户密码</a></li> <li> <a href="/develop/cjj/95068.html">如何更改MFC按钮的背景色</a></li> <li> <a href="/shouji/android/96431.html">Android手机如何取消安全模式</a></li> <li> <a href="/fuwuqi/mail/95211.html">Exchange2010恢复已删除的账号及邮箱</a></li> <li> <a href="/tuxing/iiiustrator/89641.html">用AI自动描图工具粗略扫描</a></li> <li> <a href="/os/xp/96093.html">XP SP3下安装office2010,提示要安装MSXML6....</a></li> </ul> </div> <div class="pic_list"> <h5>焦点图片</h5> <ul><li class="listimg1"><a href="/shouji/android/98318.html"><img src="http://www.cncms.com/api/thumb/?w=130&amp;h=90&amp;url=http://tech.cncms.com/tech/UploadPic/2013-10/201310512174941156.jpg" alt="Android获取SD卡总容量,可用大小,机身内存总容量及可用大小的系统方法" title="Android获取SD卡总容量,可用大小,机身内存总容量及可用大小的系统方法" width="130" height="90" border="0" /></a><h6><a href="/shouji/android/98318.html" title="Android获取SD卡总容量,可用大小,机身内存总容量及可用大小的系统方法">Android获取SD卡总容量...</a></h6></li> <li class="listimg1"><a href="/tuxing/photoshop/98152.html"><img src="http://www.cncms.com/api/thumb/?w=130&amp;h=90&amp;url=http://tech.cncms.com/tech/UploadPic/2013-8/2013813201123813.jpg" alt="Photoshop调出内衣美女照柔美效果" title="Photoshop调出内衣美女照柔美效果" width="130" height="90" border="0" /></a><h6><a href="/tuxing/photoshop/98152.html" title="Photoshop调出内衣美女照柔美效果">Photoshop调出内衣美女...</a></h6></li> <li class="listimg1"><a href="/os/windows7/98158.html"><img src="http://www.cncms.com/api/thumb/?w=130&amp;h=90&amp;url=http://tech.cncms.com/tech/UploadPic/2013-8/20138132088510.gif" alt="Windows7系统下有线网络优先级设置" title="Windows7系统下有线网络优先级设置" width="130" height="90" border="0" /></a><h6><a href="/os/windows7/98158.html" title="Windows7系统下有线网络优先级设置">Windows7系统下有线网...</a></h6></li> <li class="listimg1"><a href="/ruanjian/wangluo/98119.html"><img src="http://www.cncms.com/api/thumb/?w=130&amp;h=90&amp;url=http://tech.cncms.com/tech/UploadPic/2013-8/20138513363447766.jpg" alt="解决FF浏览器和IE下载文件乱码问题" title="解决FF浏览器和IE下载文件乱码问题" width="130" height="90" border="0" /></a><h6><a href="/ruanjian/wangluo/98119.html" title="解决FF浏览器和IE下载文件乱码问题">解决FF浏览器和IE下载...</a></h6></li> </ul> </div> <div class="clear"></div> <div class="tw_list"> <h5>最新推荐</h5> <ul><li> <a href="/shouji/android/98382.html">Android 如何修改默认输入法</a></li> <li> <a href="/os/windows8/98328.html">Windows 8中将开始菜单(metro界面)创建关机...</a></li> <li> <a href="/shouji/android/98318.html">Android获取SD卡总容量,可用大小,机身内存...</a></li> <li> <a href="/os/unix/98236.html">详解Linux 系统命令及其使用</a></li> <li> <a href="/sheji/html/98189.html">解决网页内容无法复制</a></li> <li> <a href="/os/windows7/98165.html">实用的Win 7远程桌面连接技巧</a></li> <li> <a href="/tuxing/photoshop/98152.html">Photoshop调出内衣美女照柔美效果</a></li> <li> <a href="/os/windows7/98158.html">Windows7系统下有线网络优先级设置</a></li> <li> <a href="/sheji/js/98126.html">JQuery实现下拉,单选,复选三大控件方法,</a></li> <li> <a href="/web/php/98125.html">php常用过滤非法/特殊字符串的方法</a></li> </ul> </div> <div class="bk_10"></div> <div class="clear"></div> <div id="a_r_2" class="ad_side"></div> <div class="bk_10"></div> <div class="clear"></div> <div class="tw_list"> <h5>精彩阅读</h5> <ul> <li> <a href="/tuxing/autocad/92210.html">AutoCAD 2007 入门教程-尺寸标注的组成</a></li> <li> <a href="/shouji/android/79929.html">android中模拟按键的另外一种方法</a></li> <li> <a href="/fuwuqi/mail/44856.html">Exchange Server 2003故障诊断</a></li> <li> <a href="/web/jsp/69398.html">SUN ONE架构</a></li> <li> <a href="/ruanjian/office/word/12101.html">Word 2003 视频教程-Word 如何改变艺术字形...</a></li> <li> <a href="/shujuku/mssql/43640.html">常用的MS SQL Server数据修复命令</a></li> <li> <a href="/web/php/48847.html">PHP输出控制功能在简繁体转换中的应用</a></li> <li> <a href="/develop/huibian/37416.html">5个DOS专用文件的6种io重定向(实现管道原理...</a></li> <li> <a href="/ruanjian/yingyin/51632.html">简单两三步,教你打造照片怀旧效果</a></li> <li> <a href="/os/vista/79743.html">Vista解惑100点之WMS的10个重要特性</a></li> <li> <a href="/develop/vb/75836.html">解除网虫心病VB做定时断线程序</a></li> <li> <a href="/web/aspnet/96209.html">C#获取JS的GetTime()一样的值</a></li> <li></ul> </div> </div> <div class="clear"></div> </div> <div class="bk_10"></div> <div id="foot_link" class="main center"> <a href="http://tech.cncms.com/">技术首页</a> | 关于本站 | <a href="http://sighttp.qq.com/msgrd?v=1&uin=195427478&site=web开发网广告投放tech.cncms.com&menu=yes">广告合作</a> | <a href="http://sighttp.qq.com/msgrd?v=1&uin=749081771&site=web开发网tech.cncms.com&menu=yes">联系我们</a> | <a href="/link/" target="_blank">友情连接</a> | <a href="/sitemap.html">网站地图</a> </div> <div id="foot" class="center">  Copyright &copy; 2003-2013 <a href="http://www.cncms.com" target="_blank"><font face="Verdana, Arial, Helvetica, sans-serif"><b>CnCms<font color="#cc0000">.Com</font></b></font></a>. All Rights Reserved 京ICP备10000768号 <script language="JavaScript">footer();</script> </div> <div class="dis_n"><script language="JavaScript">tongjipv();</script></div> </body> </html> <div id="html_js"> <div id="a_h_1_js"><script>ad_h_1();</script></div><script>swapHTML('a_h_1');</script> <div id="a_l_1_js"><script>ad_l_1();</script></div><script>swapHTML('a_l_1');</script> <div id="a_l_2_js"><script>ad_l_2();</script></div><script>swapHTML('a_l_2');</script> <div id="a_l_3_js"><script>ad_l_3();</script></div><script>swapHTML('a_l_3');</script> <div id="a_l_4_js"><script>ad_l_4();</script></div><script>swapHTML('a_l_4');</script> <div id="a_r_1_js"><script>ad_r_1();</script></div><script>swapHTML('a_r_1');</script> <div id="a_r_2_js"><script>ad_r_2();</script></div><script>swapHTML('a_r_2');</script> </div> <script language="JavaScript" src="/tech/hits.asp?id=5144&type=1"></script> <script language="JavaScript" src="/tech/checkhtml.asp?id=5144&d=2016-11-19 12:27:40"></script> <!-- 将此代码放在适当的位置,建议在body结束前 --> <script id="bdlike_shell"></script> <script> var bdShare_config = { "type":"large", "color":"green", "uid":"663602", "likeText":"点击分享给好友", "likedText":"CNCMS.COM", "share":"yes" }; document.getElementById("bdlike_shell").src="http://bdimg.share.baidu.com/static/js/like_shell.js?t=" + new Date().getHours(); </script>