编程(Programming)是编定程序的中文简称,就是让计算机代码解决某个问题,对某个计算体系规定一定的运算方式,使计算体系按照该计算方式运行,并最终得到相应结果的过程。为了使计算机能够理解(understand)人的意图,人类就必须将需解决的问题的思路、方法和手段通过计算机能够理解的形式告诉计算机,使得计算机能够根据人的指令一步一步去工作,完成某种特定的任务。这种人和计算体系之间交流的过程就是编程。 【实例名称】 链接的注释 【实例描述】 当用户移动鼠标到某链接时,可以为链接提供简要说明。本例以滚动提示的方式,为链接设置注释。 【实例代码】 <html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页-本站(www.xue51.com)</title>
</head>
<body>
<script>
if (!document.layers&&!document.all)
event="test"
//显示提示的方法
function shownote(current,e,text)
{
//IE浏览器的情况下
if (document.all&&document.readyState=="complete"){
//滚动显示提示内容
document.all.tip.innerHTML='<marquee
style="border:1px solid black">'+text+'</marquee>'
//根据鼠标位置设置提示位置
document.all.tip.style.pixelLeft=event.clientX+
document.body.scrollLeft+10
document.all.tip.style.pixelTop=event.clientY+document.body.scrollTop+10
document.all.tip.style.visibility="visible"
}
//Netscape浏览器的情况下
else if (document.layers){
document.tip.document.nstip.document.write('<b>'+text+'</b>')
document.tip.document.nstip.document.close()
document.tip.document.nstip.left=0
currentscroll=setInterval("scrolltip()",100)
document.tip.left=e.pageX+10
document.tip.top=e.pageY+10
document.tip.visibility="show"
}
}
//隐藏提示的方法
function hidenote()
{
if (document.all)
document.all.tip.style.visibility="hidden" //隐藏div的显示
else if (document.layers){
clearInterval(currentscroll)
document.tip.visibility="hidden"
}
}
//提示信息的滚动方法
function scrolltip()
{
if (document.tip.document.nstip.left>=
-document.tip.document.nstip.document.width)
document.tip.document.nstip.left-=5
else
document.tip.document.nstip.left=150
}
</script>
<div id="tip" style="position:absolute;clip:rect(0 150 50 0);
width:150px;background-color:#99FF99; top: 31px;
left: 103px; visibility: hidden; height: 13px">
</div>
<a href="http://google.com" onMouseOver="shownote(this,event,
'国外第一搜索引擎,欢迎使用')" onMouseOut="hidenote()">国外搜索</a>
</body>
</html>
【运行效果】 【难点剖析】 本例的重点是div的隐藏和显示,还有提示信息的滚动功能。本例中提供三个方法“shownote”、“hidenote”和“scrolltip”。“shownote’’方法显示div的提示信息,并通过“scrolltip’’滚动显示提示文本。当鼠标离开链接时使用“hidenote”方法隐藏注释。 【源码下载】 如果你不愿复制代码及提高代码准确性,你可以点击:链接的注释 进行本实例源码下载
使用编程语言写的程序,由于每条指令都对应计算机一个特定的基本动作,所以程序占用内存少、执行效率高。 |