<!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 ">
<cabeça>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JavaScriptCSS5</title>
<!-- 注意td 的伪类 -->
<style type="texto/css">
<!--
.começar {
tamanho da fonte: 14px;
cor: #0000FF;
}
.fim {
cor: #FF00FF;
tamanho da fonte: 18px;
decoração de texto: sublinhado;
}
td: passar o mouse {
cor: #FF00FF;
cor de fundo: #66FF00;
cursor: redimensionar;
}
-->
</estilo>
<linguagem script="javascript" type="text/javascript">
funçãofunOnload(){
var aTag = document.getElementsByTagName('a')[1];
aTag.onclick = funOnClick1;//添加事件
}
function funOperate1(){///outra função CSS
var pTag = document.getElementsByTagName('p')[0];
//pTag.setAttribute("classe","fim");
//pTag.setAttribute("estilo","cor: #FF00FF;tamanho da fonte: 18px;decoração do texto: sublinhado;");
pTag.style.color="#0000FF";
}
function funOnClick1(e){//通过DOM-2 操作事件(IE8不支持)
var info = 'funOnClick1';
if(null != e && e.type == "clique"){
info +=" : n 事件 " + e.type + "n";
info += "按钮 " + e.button + "n";
info += "触发元素 " + e.target.nodeName + "n";
e.stopPropagation();//停止事件传播给父节点(在当前例子中事件就不会传达室给 tabela 的 funOnClick2)
e.preventDefault();//阻止默认事件(这里点击 a 不会链接)
}
alerta(informação);
}
funçãofunOnClick2(){
alerta("funOnClick2");
}
</script>
</head>
<body onload="funOnload();">
<tabela onclick="funOnClick2()">
<tr>
<td><a href="javascript:funOperate1()">操作1</a></td>
<td>
<a href=" http://qqface.knowsky.com/">qq表情</a> </td>
</tr>
</tabela>
<p>Olá Palavra</p>
</body>
</html>