• jQuery 遍历ul li 添加 移除(代码收集)


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jQuery li</title>
    <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    function appendli()
    {
        jQuery("#chens").append("<li><img src=/"http://img1.gtimg.com/worldcup/pics/hv1/81/146/572/37231611.jpg/" /></li>");
    }
    </script>
    </head>

    <body>
    <ul id="chens">
    <li>1</li>
    <li>2</li>
    </ul>
    <input type="button" value="addli" id="chen" />
    <script type="text/javascript">
    jQuery("#chen").bind("click",function(){appendli();});


    jQuery("#chens li").click(function(){
      jQuery(this).css("color","#f00");
      jQuery(this).remove();
    });
    </script>
    </body>
    </html>

    我的网站地址:http://www.jixie.net

  • 相关阅读:
    request内置对象
    JSP页面、包含
    HTTP协议
    html简介
    数据访问层工具类
    数据运算
    可变于不可变对象分类
    有序 无序 的区别
    字符串方法
    day01_final
  • 原文地址:https://www.cnblogs.com/guozhe/p/2343849.html
Copyright © 2020-2023  润新知