WEB开发网
开发学院网页设计JavaScript Links and Anchors: Window 2 阅读

Links and Anchors: Window 2

 2007-11-27 17:53:33 来源:WEB开发网   
核心提示:abs methodReturns the absolute value of a number. 语法Math.abs(number)number is any numeric expression or a property of an existing object. 用法Math 例子In the follow

abs method

Returns the absolute value of a number.

语法

Math.abs(number)

number is any numeric expression or a property of an existing object.

用法

Math

例子

In the following example, the user enters a number in the first text box and presses the Calculate button to display the absolute value of the number.

<FORM><P>Enter a number:<INPUT TYPE=text NAME=absEntry><P>The absolute value is:<INPUT TYPE=text NAME=result><P><INPUT TYPE=button VALUE=Calculate   onClick=form.result.value = Math.abs(form.absEntry.value)></FORM>

acos method

Returns the arc cosine (in radians) of a number.

语法

Math.acos(number)

number is a numeric expression between -1 and 1, or a property of an existing object.

用法

Math

描述

The acos method returns a numeric value between 0 and pi radians. If the value of number is outside the suggested range, the return value is always 0.

例子

// Displays the value 0document.write(The arc cosine of 1 is  + Math.acos(1))// Displays the value 3.141592653589793document.write(<P>The arc cosine of -1 is  + Math.acos(-1))// Displays the value 0document.write(<P>The arc cosine of 2 is  + Math.acos(2))

See also

  • asin, atan, cos, sin, tan methods

    action property

    A string specifying a destination URL for form data that is submitted.

    语法

    formName.action

    formName is either the name of a form or an element in the forms array.

    Property of

    form

    描述

    The action property is a reflection of the ACTION attribute of the <FORM> tag. Each section of a URL contains different information. See the location object for a 描述 of the URL components.

    You can set the action property at any time.

    Certain values of the action property may require specific values for other form properties. See RFC 1867 for more information.

    例子

    The following example sets the action property of the musicForm form to the value of the variable urlName:

    document.musicForm.action=urlName

    See also

  • encoding, method, target properties

    alert method

    Displays an Alert dialog box with a message and an OK button.

    语法

    alert(message)

    message is any string or a property of an existing object.

    用法

    window

    描述

    Use the alert method to display a message that does not require a user decision. The message argument specifies a message that the dialog box contains.

    Although alert is a 用法 the window object, you do not need to specify a windowReference when you call it. For example, windowReference.alert() is unnecessary.

    例子

    In the following example, the testValue() function checks the name entered by a user in the text object of a form to make sure that it is no more than eight characters in length. This example uses the alert method to prompt the user to enter a valid value.

    function testValue(textElement) {   if (textElement.length > 8) {      alert(Please enter a name that is 8 characters or less)   }}
    You can call the testValue() function in the onBlur event handler of a forms text object, as shown in the following example:
    Name: <INPUT TYPE=text NAME=userName   onBlur=testValue(userName.value)>

    See also

  • confirm, prompt methods

    alinkColor property

    A string specifying the color of an active link (after mouse-button down, but before mouse-button up).

    语法

    document.alinkColor

    Property of

    document

    描述

    The alinkColor property is expressed as a hexadecimal RGB triplet or as one of the string literals listed in Color Values. This property is the JavaScript reflection of the ALINK attribute of the <BODY> tag. You cannot set this property after the htm source has been through layout.

    If you express the color as a hexadecimal RGB triplet, you must use the format rrggbb. For example, the hexadecimal RGB values for salmon are red=FA, green=80, and blue=72, so the RGB triplet for salmon is FA8072.

    例子

    The following example sets the color of active links to aqua using a string literal:

    document.alinkColor=aqua

    The following example sets the color of active links to aqua using a hexadecimal triplet:

    document.alinkColor=00FFFF

    See also

  • bgColor, fgColor, linkColor, and vlinkColor properties

    anchor method

    Creates an htm anchor that is used as a hypertext target.

    语法

    text.anchor(nameAttribute)

    text is any string or a property of an existing object.
    nameAttribute is any string or a property of an existing object.

    用法

    string

    描述

    Use the anchor method with the write or writeln methods to programatically create and display an anchor in a document. Create the anchor with the anchor method, then call write or writeln to display the anchor in a document.

    In the 语法, the text string represents the literal text that you want the user to see. The nameAttribute string represents the NAME attribute of the <A> tag.

    Anchors created with the anchor method become elements in the anchors array. See the anchor object for information about the anchors array.

    例子

    The following example opens the msgWindow window and creates an anchor for the Table of Contents:

    var myString=Table of Contents msgWindow=window.open(,displayWindow) msgWindow.document.writeln(myString.anchor(contents_anchor)) msgWindow.document.close()

    The previous example produces the same output as the following htm:

    Table of Contents

    See also

  • link method

    anchor object (anchors array)

    A piece of text that can be the target of a hypertext link.

    语法

    To define an anchor, use standard htm 语法:

    <A [HREF=locationOrURL]   NAME=anchorName   [TARGET=windowName]>   anchorText</A>
    HREF=locationOrURL identifies a destination anchor or URL. If this attribute is present, the anchor object is also a link object. See link for details.
    NAME=anchorName specifies a tag that becomes an available hypertext target within the current document.
    TARGET=windowName specifies the window that the link is loaded into. This attribute is meaningful only if HREF=locationOrURL is present. See link for details.
    anchorText specifies the text to display at the anchor.

    You can also define an anchor using the anchor method.

    Property of

  • document

    描述

    If an anchor object is also a link object, the object has entries in both the anchors and links arrays.

    The anchors array

    You can reference the anchor objects in your code by using the anchors array. This array contains an entry for each <A> tag containing a NAME attribute in a document in source order. For example, if a document contains three named anchors, these anchors are reflected as document.anchors[0], document.anchors[1], and document.anchors[2].

    To use the anchors array:

    1. document.anchors[index]2. document.anchors.length

    index is an integer representing an anchor in a document.

    To obtain the number of anchors in a document, use the length property: document.anchors.length.

    Even though the anchors array represents named anchors, the value of anchors[index] is always null. But if a document names anchors in a systematic way using natural numbers, you can use the anchors array and its length property to validate an anchor name before using it in operations such as setting location.hash. See the example below.

    Elements in the anchors array are read-only. For example, the statement document.anchors[0]=anchor1 has no effect.

    Properties

    The anchors object has no properties. The anchors array has the following properties:

  • length reflects the number of named anchors in a document

    Methods

  • None.

    Event handlers

  • None.

    例子

    Example 1: an anchor. The following example defines an anchor for the text Welcome to JavaScript.

    <H2>Welcome to JavaScript</H2>

    If the preceding anchor is in a file called intro.htm, a link in another file could define a jump to the anchor as follows:

    Introduction

    Example 2: anchors array. The following example opens two windows. The first window contains a series of buttons that set location.hash in the second window to a specific anchor. The second window defines four anchors named 0, 1, 2, and 3. (The anchor names in the document are therefore 0, 1, 2, ... (document.anchors.length-1)). When a button is pressed in the first window, the onClick event handler verifies that the anchor exists before setting window2.location.hash to the specified anchor name.

    LINK1.htm, which defines the first window and its buttons, contains the following code:

    <htm><HEAD><TITLE>Links and Anchors: Window 1</TITLE></HEAD><body>Links and Anchors</B><FORM><p>Click a button to display that anchor in window #2<p><INPUT TYPE=button VALUE=0 NAME=link0_button onClick=linkToWindow(this.value)><INPUT TYPE=button VALUE=1 NAME=link0_button onClick=linkToWindow(this.value)><INPUT TYPE=button VALUE=2 NAME=link0_button onClick=linkToWindow(this.value)><INPUT TYPE=button VALUE=3 NAME=link0_button onClick=linkToWindow(this.value)><INPUT TYPE=button VALUE=4 NAME=link0_button onClick=linkToWindow(this.value)></FORM></BODY></htm>

    LINK2.htm, which contains the anchors, contains the following code:

    <htm><HEAD><TITLE>Links and Anchors: Window 2</TITLE></HEAD><body>Some numbers</B> (Anchor 0)<LI>one<LI>two<LI>three<LI>four<LI>five<LI>six<LI>seven<LI>eight<LI>nine<p><B>Some colors</B> (Anchor 1)<LI>red<LI>orange<LI>yellow<LI>green<LI>blue<LI>purple<LI>brown<LI>black<p><B>Some music types</B> (Anchor 2)<LI>R&B<LI>Jazz<LI>Soul<LI>Reggae<LI>Rock<LI>Country<LI>Classical<LI>Opera<p><B>Some countries</B> (Anchor 3)<LI>Afghanistan<LI>Brazil<LI>Canada<LI>Finland<LI>India<LI>Italy<LI>Japan<LI>Kenya<LI>Mexico<LI>Nigeria</BODY></htm>

    See also

  • link object
  • anchor method

    anchors property

    An array of objects corresponding to named anchors in source order. See anchor object.


    appCodeName property

    A string specifying the code name of the browser.

    语法

    navigator.appCodeName

    Property of

    navigator

    描述

    appCodeName is a read-only property.

    例子

    The following example displays the value of the appCodeName property:

    document.write(The value of navigator.appCodeName is  +   navigator.appCodeName)

    For Navigator 2.0, this displays the following:

    The value of navigator.appCodeName is Mozilla

    See also

  • appName, appVersion, userAgent properties

    appName property

    A string specifying the name of the browser.

    语法

    navigator.appName

    Property of

    navigator

    描述

    appName is a read-only property.

    例子

    The following example displays the value of the appName property:

    document.write(The value of navigator.appName is  +   navigator.appName)

    For Navigator 2.0, this displays the following:

    The value of navigator.appName is Netscape

    See also

  • appVersion, appCodeName, userAgent properties

    appVersion property

    A string specifying version information for the Navigator.

    语法

    navigator.appVersion

    Property of

    navigator

    描述

    The appVersion property specifies version information in the following format:

    releaseNumber (platform; country)

    The values contained in this format are the following:

  • releaseNumber is the version number of the Navigator. For example, 2.0b4 specifies Navigator 2.0, beta 4.
  • platform is the platform upon which the Navigator is running. For example, Win16 specifies a 16-bit version of Windows such as Windows 3.11.
  • country is either I for the international release, or U for the domestic U.S. release. The domestic release has a stronger encryption feature than the international release.

    appVersion is a read-only property.

    例子

    Example 1. The following example displays version information for the Navigator:

    document.write(The value of navigator.appVersion is  +   navigator.appVersion)

    For Navigator 2.0 on Windows 95, this displays the following:

    The value of navigator.appVersion is 2.0 (Win95, I)

    Example 2. The following example populates a textarea object with newline characters separating each line. Because the newline character varies from platform to platform, the example tests the appVersion property to determine whether the user is running Windows (appVersion contains Win for all versions of Windows). If the user is running Windows, the newline character is set to \r\n; otherwise, its set to \n, which is the newline character for Unix and Macintosh.

    <FORM NAME=form1><br/><TEXTAREA NAME=testLines ROWS=8 COLS=55> <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-Links.html" target="_blank">Links</a> <a href="/search-and.html" target="_blank">and</a> <a href="/search-Anchors.html" target="_blank">Anchors</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="/shouji/android/98385.html" title="Android 当修改一些代码时,使用什么编译命令可以最有效率">Android 当修改一些代码时,使用什么编译命令可以最...</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98384.html" title="Android 如何添加一个apk使模拟器和真机都编译进去">Android 如何添加一个apk使模拟器和真机都编译进去...</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98383.html" title="Android 修改Camera拍照的默认保存路径">Android 修改Camera拍照的默认保存路径</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98382.html" title="Android 如何修改默认输入法">Android 如何修改默认输入法</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98372.html" title="android开发中finish()和System.exit(0)的区别">android开发中finish()和System.exit(0)的区别</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98371.html" title="Android手势识别简单封装类">Android手势识别简单封装类</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98361.html" title="android中查看项目数字证书的两种方法">android中查看项目数字证书的两种方法</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98354.html" title="Android中获取IMEI码的办法">Android中获取IMEI码的办法</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98350.html" title="android 相机报错 setParameters failed">android 相机报错 setParameters failed</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98348.html" title="Android重启运用程序的代码">Android重启运用程序的代码</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98333.html" title="Android为ListView的Item设置不同的布局">Android为ListView的Item设置不同的布局</a></li> <li>&rsaquo;&rsaquo;<a href="/shouji/android/98332.html" title="android bitmap与base64字符串的互相转换">android bitmap与base64字符串的互相转换</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=Links and Anchors: Window 2")' href="javascript:"><img src="/skins/icons/icon_baidu.gif" align="absmiddle" border="0" />中查找“Links and Anchors: Window 2”更多相关内容</a></li> <li><a onclick='window.open("http://www.google.com.hk/search?q=Links and Anchors: Window 2&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" />中查找“Links and Anchors: Window 2”更多相关内容</a></li> <li><strong class="c_blue">上一篇:</strong><a href="/sheji/js/5187.html">&#106avascript手冊总纲</a></li> <li><strong class="c_blue">下一篇:</strong><a href="/sheji/js/5189.html">Checkbox object example</a></li> </ul> </div> <div class="box_9"> <h5>更多精彩</h5> <ul><li class="listimg1"><a href="/anquan/firewall/27920.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010930/201093012224411.jpeg" alt="数据说话 硬件防火墙选购经验谈(上)" title="数据说话 硬件防火墙选购经验谈(上)" width="110" height="80" border="0" /></a><h6><a href="/anquan/firewall/27920.html" title="数据说话 硬件防火墙选购经验谈(上)">数据说话 硬件防火墙选购经验谈(上)</a></h6></li> <li class="listimg1"><a href="/ruanjian/wangluo/6023.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010102/2010102104354116.jpg" alt="酷邮Koomail单个账户网略代理设置教程" title="酷邮Koomail单个账户网略代理设置教程" width="110" height="80" border="0" /></a><h6><a href="/ruanjian/wangluo/6023.html" title="酷邮Koomail单个账户网略代理设置教程">酷邮Koomail单个账户网略代理设置教程</a></h6></li> <li class="listimg1"><a href="/tuxing/photoshop/21147.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010912/201091219456217.jpg" alt="Photoshop打造照片的一种空幻效果" title="Photoshop打造照片的一种空幻效果" width="110" height="80" border="0" /></a><h6><a href="/tuxing/photoshop/21147.html" title="Photoshop打造照片的一种空幻效果">Photoshop打造照片的一种空幻效果</a></h6></li> <li class="listimg1"><a href="/anquan/security/26538.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010930/2010930135722910.jpeg" alt="应用案例:显像管企业网络安全管理引入IDS" title="应用案例:显像管企业网络安全管理引入IDS" width="110" height="80" border="0" /></a><h6><a href="/anquan/security/26538.html" title="应用案例:显像管企业网络安全管理引入IDS">应用案例:显像管企业网络安全管理引入IDS</a></h6></li> <li class="listimg1"><a href="/web/jsp/67936.html"><img src="http://www.cncms.com/api/thumb/?w=110&amp;h=80&amp;url=http://tech.cncms.com/tech/UploadPic/2010-9/20109994744337.jpg" alt="2种Unix系统克隆方法" title="2种Unix系统克隆方法" width="110" height="80" border="0" /></a><h6><a href="/web/jsp/67936.html" title="2种Unix系统克隆方法">2种Unix系统克隆方法</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="/develop/java/33782.html">Webharvest网络爬虫应用总结</a></li> <li> <a href="/ruanjian/yingyin/51450.html">新一代图像处理软件 可牛V1.8亮相</a></li> <li> <a href="/develop/java/96192.html">java中Thread与Runnable的区别</a></li> <li> <a href="/ruanjian/liaotian/97486.html">qq如何才能不让别人拉我到讨论组?</a></li> <li> <a href="/develop/shell/95074.html">[shell] if else以及大于、小于、等于逻辑表...</a></li> <li> <a href="/ruanjian/office/excel/93992.html"><font color="#0000FF">EXCEL2003下拉菜单选择后另一列自动生成</font></a></li> <li> <a href="/develop/c/95240.html">.Net Framework4 与.Net Framework4.0 clie...</a></li> <li> <a href="/develop/java/95760.html">Java中IO流的分类和应用</a></li> <li> <a href="/web/jsp/96311.html">jsp中实现批量删除</a></li> <li> <a href="/develop/java/97494.html">java实现u盘指定内容的自动复制</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="/ruanjian/office/qtoffice/10470.html">Office 2007中两个极具个性的小功能</a></li> <li> <a href="/tuxing/iiiustrator/89771.html">PS+AI制作闪闪的水晶字</a></li> <li> <a href="/sheji/divcss/91589.html">DIV+CSS建立标准WEB网页的好处</a></li> <li> <a href="/os/vista/82978.html">保护隐私 让Vista搜索屏蔽个人内容</a></li> <li> <a href="/web/jsp/69206.html">J2EE、CORBA、DNA三种主流中间件平台比较(...</a></li> <li> <a href="/anquan/security/27449.html">如何正确预防垃圾邮件与网络钓鱼诈骗</a></li> <li> <a href="/web/php/43241.html">PHP程序与服务器端通讯的方法</a></li> <li> <a href="/web/aspnet/51179.html">.NET 3.x新特性之自动属性及集合初始化</a></li> <li> <a href="/yunying/seo/88839.html">微型博客 专业领域个人站长机会多多</a></li> <li> <a href="/web/jsp/58316.html">Java学习从入门到精通(2)</a></li> <li> <a href="/shouji/windowsphone/97379.html">windows phone页面间数据共享</a></li> <li> <a href="/fuwuqi/cloud/45431.html">现实中的开放源码云计算,第 2 部分: 针对云...</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=5188&type=1"></script> <script language="JavaScript" src="/tech/checkhtml.asp?id=5188&d=2016-6-2 1:30:05"></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>