易截截图软件、单文件、免安装、纯绿色、仅160KB

HTML特殊字符对照表


 
�
 
@
@
 
at符号

€
 
 
À
À
À
 
 

 
 
A
A
 
A


 
 
Á
Á
Á
 
 

 
 
B
B
 
B

‚
 
 
Â
Â
Â
 
 

 
 
C
C
 
C
ƒ
ƒ
 
 
Ã
Ã
Ã
 
 

 
 
D
D
 
D

„
 
 
Ä
Ä
Ä
 
 

 
 
E
E
 
E

…
 
 
Å
Å
Å
 
 

 
 
F
F
 
F

†
 
 
Æ
Æ
Æ
 
 

 
 
G
G
 
G

‡
 
 
Ç
Ç
Ç
 
 

 
 
H
H
 
H
ˆ
ˆ
 
 
È
È
È
 
 
	
 
 
I
I
 
I

‰
 
 
É
É
É
 
 


 
换行
J
J
 
J
Š
Š
 
 
Ê
Ê
Ê
 
 

 
 
K
K
 
K

‹
 
 
Ë
Ë
Ë
 
 

 
 
L
L
 
L
Œ
Œ
 
 
Ì
Ì
Ì
 
 

 
回车
M
M
 
M


 
 
Í
Í
Í
 
 

 
 
N
N
 


相关文档:

html、asp、php、jsp 禁止缓存的方法

HTML:
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
<META HTTP-EQUIV="expires" CONTENT="0">
PHP:
header("Expires: Mon, 26 Jul 1997 ......

ASP移除所有HTML代码的函数

代码如下:
Function RemoveHTML(strText)
Dim RegEx
Set RegEx = New RegExp
RegEx.Pattern = "<[^>]*>"
RegEx.Global = True
RemoveHTML = RegEx.Replace(strText, "")
RemoveHTML = replace(RemoveHTML," "," ")
End Function
这是最基本的正则替换,有某些特殊字符还没过滤,可自行添加 ......

html常用标记

<html>
<head>
<title>标题<title>
</head>
<body>..........文件内容..........
</body>
</html>
1.文件标题
<title>..........</title>
2.文件更新--<meta>
【1】10秒后自动更新一次
<meta http-equiv="refresh" content=10>
【2】10秒后自动连结到另一文件
<meta http-equiv="ref ......

HTML 文件传输页面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta NAME="Copyright" CONTENT="">
<meta http-equiv="Content-Type" content="text/html; charset=u ......

Android的webview加载本地html、本apk内html和远程URL

首先在layout文件夹下的xml中 加入WebView控件
<WebView
android:id="@+id/wv1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
再在主文件中输入如下代码
 
public class TestDemo extends Activity {
/** Called when the activity is first created. */ ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号