window.alert();

HTML常用代码有哪些

HTML常用代码有哪些
  HTML常用代码有哪些?
 
  网页的描述,关键字,作者及其他元素:metaname=""content=""
 
  客户端脚本:<script>window.alert('');<script>
 
  文档的样式信息:<style></style>
 
  引进图片:imgsrc
 
  换行:br
 
  超级链接:aherf
 
  新的页面打开:target="_blank"
 
  无序列表:<ul><li></li></ul>
 
  有序列表:<ol><li></li></ol>
 
  表格的页眉:thead
 
  表格的主题:tbody
 
  定义表格的页脚:tfood
 
  定义表格:table
 
  边框:border
 
  单元格边框与内容的间距:cellbadding
 
  单元格之间的间距:cellspacing
 
  表格的表头:th
 
  表格的行:tr
 
  表格的单元:td
 
  表单:formaction="浏览者输入的数据被传送到的地方"methot="数据传送的方式"(get或post)
 
  文本框:<inputtype="text"name="name"value=""><br>
 
  密码框:<inputtype="password"name="password"value=""><br>
 
  单选框:radio当type=radio时为单选框
 
  多选框:checkbox当type=checkbox时为多选框
 
  默认选项:checked
 
  []:多个值,数组
 
  下拉列表框:<selectname="">选项<optionvalue=""></option></select>
 
  默认选中:selected
 
  多行文本:<textareaname""></textarea>
 
  行数:cols
 
  列数:rows
 
  上传图片头像或场景:<inputtype="file"/>
 
  提交按钮:<inputtype="submit"value=提交>
 
  重置按钮:<inputtype="reset"value=重置>
 
  等等。

推荐阅读