Chinaunix首页 | 论坛 | 博客
  • 博客访问: 558627
  • 博文数量: 34
  • 博客积分: 10171
  • 博客等级: 上将
  • 技术积分: 1365
  • 用 户 组: 普通用户
  • 注册时间: 2004-11-09 13:13
文章分类

全部博文(34)

文章存档

2011年(1)

2009年(20)

2008年(13)

我的朋友

分类: 系统运维

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动作。

阅读(756) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~