摘要:<select id="product" name="qualityValue.product" style="width:146px;" onchange="productSelected(this.value)"><option selected >----All----</option><c:forEach var="product" items="${products}"><option value="$
阅读全文
文章分类 - 【6-03】【Html】
摘要:Definition and UsageThe head element is a container for all the head elements. Elements inside <head> can include scripts, instruct the browser where to find style sheets, provide meta information, and more.The following tags can be added to the head section: <base>, <link>, <me
阅读全文
摘要:Definition and UsageThe <script> tag is used to define a client-side script, such as a JavaScript.The script element either contains scripting statements or it points to an external script file through the src attribute.The required type attribute specifies the MIME type of the script.Common u
阅读全文
摘要:Definition and UsageThe <link> tag defines the relationship between a document and an external resource.The <link> tag is most used to link to style sheets.
阅读全文
摘要:Definition and UsageMetadata is information about data.The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.Meta elements are typically used to specify page description, keywords, author of the document, last modifie
阅读全文
摘要:Unit 2 Cascading Style Sheet(CSS)FeaturesSeparates the presentation and contents of the HTML documentProvide numerous attributes to create dynamic effectsSimpleReusableStyle sheetA set of statements that specify presentation of a documentA powerful mechanism for adding stylesStyles can be assigned b
阅读全文
摘要:Unit 1 HTMLWWW and HTMLHypertext transfer Protocol(HTTP)-The standard language that computers connect to the World Wide Web use to communicate with each otherWhat is HTMLsimpleBrowser/Platform IndependentNot case sensitiveDifferent from Programming LanguagesA medium for user InterfaceHTML tags and a
阅读全文
摘要:一、知道有这个东西就行。现在的编辑器都有智能感知功能的。输入首字母,就会列出相应的属性的。这些属性名称描述性都很强,看一下就知道的。所以不用记那么仔细。还得多实践,自然就掌握了。二、这些不用背会的,只要知道就好了 关键是框架 知道了框架,然后在里面添加你想要的效果,就可以了 三、多看一些网站的源代码,看着看着就熟悉了。不过最好,用Dreamweaver尝试你会的代码,后用EditPlus等没有提示的手写代码后比较,加深印象。慢慢就学会了。 四、不用死记硬背(具体单词拼写),不要去记具体内容,记住整体结构就可以了。然后具体应用的时候带着书在身边,要用到什么忘记了就可以查找什么内容。 五、学习HT
阅读全文