html 中cursor的样式
鼠标的多种样式...
<P><a href="help.htm" style="cursor:hand">手</a>
<a href="help.htm" style="cursor:text">文本</a>
<a href="help.htm" style="cursor:MOVE">四个方向的箭头</a>
<a href="help.htm" style="cursor:e-resize">左右方向的箭头</a>
<a href="help.htm" style="cursor:nw-resize">右斜下方箭头</a>
<a href="help.htm" style="cursor:s-resize">上下方箭头</a>
<a href="help.htm" style="cursor:sw-resize">左斜下方箭头</a>
<a href="help.htm" style="cursor:crosshair">十字架</a>
<a href="help.htm" style="cursor:wait">沙漏</a>
<a href="help.htm" style="cursor:help">问号</a>
<a href="help.htm" style="cursor:n-resize">上下箭头</a>
<a href="help.htm" style="cursor:w-resize">左右箭头</a>
<a href="help.htm" style="cursor:se-resize">右斜下箭头</a>
</P>
潜江魂 2004-10-14 20:28
<a href="help.htm" target="_blank" >手</a>
<a href="help.htm" target="_blank" >文本</a>
<a href="help.htm" target="_blank" >四个方向的箭头</a>
<a href="help.htm" target="_blank" >左右方向的箭头</a>
<a href="help.htm" target="_blank" >右斜下方箭头</a>
<a href="help.htm" target="_blank" >上下方箭头</a>
<a href="help.htm" target="_blank" >左斜下方箭头</a>
<a href="help.htm" target="_blank" >十字架</a>
<a href="help.htm" target="_blank" >沙漏</a>
<a href="help.htm" target="_blank" >问号</a>
<a href="help.htm" target="_blank" >上下箭头</a>
<a href="help.htm" target="_blank" >左右箭头</a>
<a href="help.htm" target="_blank" >右斜下箭头</a>
[ali
相关文档:
<map name="Map4" id="Map4">
<area shape="rect" mce_shape="rect" coords="659,31,697,45" mce_coords="659,31,697,45" href="product/?keys=289" mce_href="product/?keys=289" />
</map>
<map name=" ......
<html:link> 标签用于生成HTML <a> 元素。<html:link> 在创建超链接时,有两个优点:
(1) 允许在URL 中以多种方式包含请求参数。
(2) 当用户浏览器关闭Cookie 时,会自动重写URL,把SessionID 作为请求参数包含在URL 中,用于跟踪用户的Session 状态。
<ht ......
访问控件的主要对象是:document对象。分别对应当前文档所有的(子对象)个人观点。并且已经提供的几个主要方法来访问对象。
1. document.getElementById
2. document.getElementsByName
3 &n ......
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Lan ......
String.prototype.HTMLEncode = function() {
var temp = document.createElement ("div");
(temp.textContent != null) ? (temp.textContent = this) : (temp.innerText = this);
var output = temp.innerHTML;
temp = null;
return output;
}
String.prototype.HTMLDecode = function() {
var temp = doc ......