为何我在网上下载了 JAVASCRIPT手册  很多东西都没有 像innerHTML这些都没有   到底要学JAVASCRIPT  要学哪些东西呢  可以指点下吗 不然每次来CSDN问  很多方法或者属性都没有见过 很是奇怪

解决方案 »

  1.   

    你的手册不全innerHTML Property  Internet Development Index --------------------------------------------------------------------------------Sets or retrieves the HTML between the start and end tags of the object.SyntaxHTML N/A 
    Scripting object.innerHTML [ = sHTML ] Possible ValuessHTML String that specifies or receives the content between the start and end tags. The property is read/write for all objects except the following, for which it is read-only: COL, COLGROUP, FRAMESET, HTML, STYLE, TABLE, TBODY, TFOOT, THEAD, TITLE, TR. The property has no default value.Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see About Dynamic Properties.ResThe innerHTML property is valid for both block and inline elements. By definition, elements that do not have both an opening and closing tag cannot have an innerHTML property.The innerHTML property takes a string that specifies a valid combination of text and elements.When the innerHTML property is set, the given string completely replaces the existing content of the object. If the string contains HTML tags, the string is parsed and formatted as it is placed into the document.This property is accessible at run time, as of Microsoft® Internet Explorer 5. Removing elements at run time, before the closing tag is parsed, could prevent other areas of the document from rendering.When using innerHTML to insert script, you must include the DEFER attribute in the script element.You can change the value of the title element using the document.title property.To change the contents of the table, tFoot, tHead, and tr elements, use the table object model described in How to Build Tables Dynamically. For example, use the rowIndex property or the rows collection to retrieve a reference to a specific table row. You can add or delete rows using the insertRow and deleteRow methods. To retrieve a reference to a specific cell, use the cellIndex property or the cells collection. You can add or delete rows using the insertCell and deleteCell methods. To change the content of a particular cell, use the innerHTML property.To maintain compatibility with earlier versions of Internet Explorer, this property applies to the textArea object. However, the property works only with strings that do not contain tags. With a string that contains a tag, this property returns an error. It is better to use the innerText property with this object.ExamplesThis example uses the innerHTML property to change the text of a paragraph when an onmouseover event occurs. The affected text and any tags within it are changed by the onmouseover and onmouseout events.SHOWExample...
    <P onmouseover="this.innerHTML='<B>Mouse out to change back.</B>'"
    onmouseout="this.innerHTML='<I>Mouse over again to change.</I>'">
    <I>Mouse over this text to change it.</I>
    </P>
    ...
    Show Me
    This example uses the innerHTML property to insert script into the page.SHOWExample<HTML>
    <SCRIPT>
    function insertScript(){
    var sHTML="<input type=button onclick=" + "go2()" + " value='Click Me'><BR>";
    var sScript="<SCRIPT DEFER>";
    sScript = sScript + "function go2(){ alert('Hello from inserted script.') }";
    sScript = sScript + "</SCRIPT" + ">";
    ScriptDiv.innerHTML = sHTML + sScript;
    }
    </SCRIPT>
    <BODY onload="insertScript();">
    <DIV ID="ScriptDiv"></DIV>
    </BODY>
    </HTML>
    Show Me
    Standards InformationThere is no public standard that applies to this property. Applies ToTHEAD 
    Platform Version 
    Win16: 5 
    Win32: 5 
    Windows CE: N/A 
    Unix: 5 
    Mac: 5 
    Version data is listed when the mouse hovers over a link, or the link has focus. 
     A, ACRONYM, ADDRESS, B, BDO, BIG, BLOCKQUOTE, BODY, BUTTON, CAPTION, CENTER, CITE, CODE, COL, COLGROUP, CUSTOM, DD, DEL, DFN, DIR, DIV, DL, DT, EM, FIELDSET, FONT, FORM, FRAMESET, hn, HTML Comment, HTML, I, INS, KBD, LABEL, LEGEND, LI, LISTING, MAP, MARQUEE, MENU, nextID, NOBR, OL, OPTION, P, PRE, Q, RT, RUBY, S, SAMP, SCRIPT, SELECT, SMALL, SPAN, STRIKE, STRONG, STYLE, SUB, SUP, TABLE, TBODY, TD, TFOOT, TH, THEAD, TITLE, TR, TT, U, UL, VAR 
    Move the mouse pointer over an element in the Applies To list to display availability information for the listed platforms. See AlsoinsertAdjacentHTML, How to Build Tables Dynamically--------------------------------------------------------------------------------说明本手册由 lemon 整理编辑 OICQ:27550369 E_mail:[email protected]   [email protected] 
    本手册的内容全部来自Microsoft MSDN Library,若有疑问可直接访问Microsoft MSDN Library。 
    由于链接众多,错误之处在所难免,希望各位用户指正。由此带来的一切后果,本人概不负责。 
    其他参考文献(前台): 
    script.chm  Microsoft Windows 脚本技术 1.37MB 
    Jscript.chm  Microsoft JScript 语言参考 602KB 
    vbscript.chm  Microsoft VBScript 语言参考 530KB 
    lsh_htccom1.chm  Microsoft Windows 脚本部件 140KB 
    wsh.chm  Microsoft Windows 脚本宿主 136KB 
    MSXML.chm  Microsoft XML 4.0 Technology Preview 2.37MB 
    css.chm  css 2.0 中文手册(苏昱) 258KB 
    cssfilter.chm  样式表滤镜中文手册(苏昱) 386KB 
    behavior.chm  默认行为中文手册(苏昱) 149KB 
    methods.chm  文档对象模型中文手册(苏昱) 187KB 
    以上资料可在http://clgigi.8u8.com上下载。 
      

  2.   

    innerHTML,不属于JS的内容,它是DOM的内容,可以通过JS操作,也可以通过VBS操作