|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不过还好,PHP语言给出的语法错误很详细,只要稍微熟悉一点之后,看错误提示就能很容易找出错误所在的。PHP还有一个特别好用的调试功能,在PHP语句中,你可以随时用echo来输出结果。 <HTML>
<HEAD>
<TITLE>键盘和鼠标事务测试</TITLE>
<script language="javascript">
<!--
function keyDown(e) {
s = "";
for(v in event)
s += v+"="+event[v]+"<br>";
view.innerHTML = s;
return false;
}
document.onkeydown=keyDown
document.onkeyup=keyDown
document.onmousedown=keyDown
document.onmouseup=keyDown
document.onmousemove=keyDown
document.onmou搜索引擎优化ver=keyDown
document.onmou搜索引擎优化ut=keyDown
document.onkeypress=keyDown
//-->
</script>
</HEAD>
<BODY>
<p>请操作鼠标或键盘</p> <input type=text>
<table border>
<tr><td>123</td></tr>
</table>
<table border>
<tr>
<td colspan=3 id="keyview"> </td>
</tr>
<tr>
<tr>
<td onClick="key(this)" style="cursor=hand;">7</td>
<td onClick="key(this)" style="cursor=hand;">8</td>
<td onClick="key(this)" style="cursor=hand;">9</td>
</tr>
<tr>
<td onClick="key(this)" style="cursor=hand;">4</td>
<td onClick="key(this)" style="cursor=hand;">5</td>
<td onClick="key(this)" style="cursor=hand;">6</td>
</tr>
<tr>
<td onClick="key(this)" style="cursor=hand;">1</td>
<td onClick="key(this)" style="cursor=hand;">2</td>
<td onClick="key(this)" style="cursor=hand;">3</td>
</tr>
<tr>
<td colspan=2 onClick="key(this)" style="cursor=hand;">0</td>
<td onClick="key(this)"> </td>
</tr>
</table>
<span id="view"></span>
</BODY>
</HTML>
既然选择了PHP,就要坚持学下去!大家有没有问自己为什么会选择学习PHP呢?就我个人而言,完全是因为兴趣,因为我的专业和计算机完全无关,但是就是对编程很赶兴趣,尤其对网络编程、web开发特别赶兴趣。 |
|