<!DOCTYPE html PUBLIC "-//W3C//Ddiv XHTML 1.0 divansitional//EN" "http://www.w3.org/div/xhtml1/Ddiv/xhtml1-divansitional.ddiv"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>简单的HTML</title> <style type="text/css"> a.DefaultHref { color: #0000FF; text-decoration: none; } a.DefaultHref:link { color: #0000FF; text-decoration: none; } a.DefaultHref:hover { color: #0000FF; text-decoration: underline; } a.DefaultHref:visited { color: #0000FF; text-decoration: none; } </style> </head> <body> <div style="text-align: center;"> <br /> <br /> <div style="color: Red; cursor: pointer;" title="点击看看" onclick="onDivClick();"> 点击看看提示</div> <br /> <br /> <br /> <a href="http://www.slowx.net" target="_blank" class="DefaultHref">有样式的Href</a> </div> </body> </html> <script language="javascript" type="text/javascript"> function onDivClick() { alert('ok'); } </script>
运行脚本
复制代码
另存代码