jquery点击事件案例

Posted binghuazhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery点击事件案例相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <title>Document</title>

   <script type="text/javascript" src="jquery.1.11.1.min.js"></script>

</head>

<body>

   <select id="s1" size="2" style="width: 400px;height: 200px;">

      <option>1</option>

      <option>2</option>

      <option>3</option>

   </select>

  

   <select id="s2" size="2" style="width: 400px;height: 200px;"></select>

   <button id="add">添加</button>

   <button id="del">删去</button>

  

   <script type="text/javascript">

      $("#add").click(function(){              //将事件绑定在按钮身上

         var opt = $("#s1 option:selected").clone(true);  // 克隆选中option

         opt.appendTo($("#s2"));            //把 opt 添加到 s2

      });

      $("#del").click(function(){          //删除按钮点击的时候,事件在点击时触发

         var opt = $("#s2 option:selected");

         opt.remove();                 // opt 被移除

      })

   </script>

</body>

</html>

 

网页效果如下

  技术图片

 

以上是关于jquery点击事件案例的主要内容,如果未能解决你的问题,请参考以下文章

05_jQuery对象初识登录案例

jquery 怎样给每个图片添加点击事件?

jquery里怎么添加点击事件?

jquery向元素添加点击事件

jquery使用案例

jquery为a标签添加点击事件吗