HTML&javaSkcript&CSS&jQuery&ajax(二)

一、HTML

1、标签<a href="http:www.baidu.com">This is a link </a>         <img src="w3cSchool.jpg" width="123" height="34" />   <!--Html元素指的是从Start tag 到 end tag的所有代码-->

2、eg、<html> <body> <p> This is a paragraph </p>  </body></html>

3、<h1 align="center" >对齐方式      <body bgcolor="yellow">背景颜色设置 ,  <table border="1">表格边框设置

4、<hr/>创建水平线 eg、 <p> This is a paragraph</p>    <hr/>    <p>This is a paragraph</p>    <br/>换行标记

5、<body style="background-color:yellow">    <h2 style="background-color:red"> This is a page<h2/>  <p style="background-color:green">This is a paragraph</p>

6、<h1 style="font-family: verdana">A heading</h1>      <p style="font-family:arial; color:red; font-size:20px;"> A paragraph</p>

7、<h1 style="text-align:center">This is a heading</h1 >      <p> WWF 的目标是:<q>构建人与自然和谐共存的世界。</q></p>   <!--引用-->

8、对于长的引用使用<blockquote cite="http://www.worldwildlife.org/who/index.html"> 五十年来,WWF一直致力于保护自然环境的未来</blockquote>

9、<address>  writen by Donald Duck <br\> Visit us at:   <br\>  </address>

10、键盘标签 <p><kbd> File |Open.......</kbd></p>   计算机代码标签<code>   var person={ firstname:"Bill", lastName::"Gates", age:50, eyeColor:"blue"}

11、定义数学变量标签   <p>  <var>E=mc<sup>2</sup></var></p>

12、外部样式表链接 <head><link rel=“stylesheet” type="text/css" href="mystyle.css"></head>   内部样式 <head>   <style type="text/css">  body{background-color:red}  p{margin-left:30px}</style> </head>  内联样式   <p  style=color: red; margin-left :30px">This is a paragraph</p>

13、链接<a href="url">link text</a>     使用Target属性可以定义文档在何处显示    <a href="www.w3cschool.com.cn/"  target="_blank">Visit W3cShool!</a>

14、图像标签 <img  src="url"/>   替换文本属性,  <img src="boat.gif"  alt="Big Boat"> 当浏览器无法加载图像时提示

15、表格单元格 <table  border="1"><tr><td> row1 ,cell1</td>   <td> row 1 ,cell 2</td>   </tr>     <tr> <td>  row 2, cell 1 </td> <td>row 2,cell2</td></tr>  </table>

16、表头标签<th>Heading</th>  <th>Another Heading</th>   如果表格是空的,则表格边框不显示,要添加占位符 <td>&nbsp;</td>

17、无序列表  <ul><li>Coffe</li>   <li>Milk</li></ul>  有序列表   <ol><li>Coffe</li>    <li>Milk</li></ol>自定义列表 <dl><dt>    </dt></dl>

原文地址:https://www.cnblogs.com/xinxianquan/p/8463634.html

时间: 2024-10-08 01:41:15

HTML&javaSkcript&CSS&jQuery&ajax(二)的相关文章

HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax(四)

一.HTML创建响应设计 Responsive Web Design 可以改变尺寸传递网页,对于平板和移动设备是必须的 1.<!DOCTYPE html><html lang="en-US><head><style>.city{float:left;margin:5px;padding:15px;width:300px;height:300px;broder: 1px solid black;}</style></head>

HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax(七)

'一.HTML5 实例  <video width="430" controls>   <source src="mov_nnn.mp4" type="video/mp4"> <source src="mov_bb/ogg" type="video/ogg"> Ypu browser dose not support the vodeo tag</video>

HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax(十)

HTML 1.SVG直接嵌入HTML网页 ,SVG 是使用XML描述2D图像的语言,Canvas通过JavaScript来绘制2D <svg xmlns="http://www.w3.org/200/svg" version="1.1" height="190"> <polygon point="100,10,40,190,60,10,190,190"   style="fill:lime;stro

XSS-HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax

1.设置不同的样式列表 <style> ul.a{list-style-tyrp:circle;}    ul.b{list-style-type:square;}   ul.c{list-style-type:upper-roman;}  ul.d{list-style-type:lower-alpha;} </style> <body> <ul class="a"> <li>Coffe</li> <li&

Jquery Ajax二次封装(部分转载)

/* ajax调用扩展 */ $.extend($,{ ajaxGetJson:function(url,data,callback) { $.ajax({ url:url, data:data, datatype:"json", method:"get", contentType: "application/json", beforeSend:function(){ //myLoad();//打开加载层 }, complete:function

HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax-XSS

一.CSS  标题隐藏 1. <sytle>h1.hidden {visibility: hidden;} </style> <body> <h1>这是一个可以看见的标题</h1> <h1 class="hidden">这是隐藏的标题</h1></body>该元素被隐藏了,但是占得空间任然存在 2.<style> h1.hidden{dispaly:none;}</styl

HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax-Css

CSS 1 .eg <head> <style> body{ background-color:#d0e4fe;} h1{ color:orange; text-alin:center;}p{ font-family:"Times New Roman"; font-size:2opx;} </style></head> <body> <h1>CSS实例</h1> <p>这是一个段落</

XSS-HTML&amp;javaSkcript&amp;CSS&amp;jQuery&amp;ajax-CSS

CSS 1.表单的处理 <style> table, td, th{ border:1px; solid green;} th{ background-color:green; color: white;} </style> <body> <table>   <tr><th>firstName</th><th>Lastname</th></tr> <tr><td>

asp.net中利用Jquery+Ajax+Json实现无刷新分页(二)

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PageTest.aspx.cs" Inherits="renmai_PageTest" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh