爱科学的好少年
Digico
全部博文(34)
2011年(1)
2009年(20)
2008年(13)
c9219677
gaojianq
yanxiaom
huyanjie
cyboca
ymc4444
HRSSSS
seventee
irockey
分类: 系统运维
2009-02-23 11:17:23
<input id=query name="query" value="abc" /><input type="button" value="submit" id="btn"/> <script type="text/javascript">
//input name:query 的值。 alert(document.getElementById("query").value);
//捕获btn按钮的点击动作。 document.getElementById("btn").onclick = function() { alert(document.getElementById("query").value); } </script> 说明: document.getElementById("query")
//取当前 input 输入框内 的相关值。query 为指定的input name名。
例:document.getElementById("query").value //取~名为query 的input的value值。 document.getElementById("btn").onclick //捕获~名为btn 的input的onclick动作。
上一篇:PHP JSON的解析函数
下一篇:调用某接口,读取返回值
登录 注册