javascript基础之十三(Jquery基础)

<!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=gb2312" />
<title>14-Jquery基础</title>
<style>
    #divTmp{ font-family:Arial, Helvetica, sans-serif; font-style:italic; border:thick solid;}
    .mtable{ margin:20px;}
    .trOdd{ background-color:#99CCFF;}
    .divClass{ background:#0000FF;}
</style>
<link href="css/bootstrap.css" rel="stylesheet"/>
<link href="css/bootstrap-theme.css" rel="stylesheet"/>

<script src="js/jquery-1.11.3.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){//这样写,可以在不完全加载说有dom树访问执行所有方法
    var tdiv=$("#divTmp");//获取 jquery 元素
    var odiv=$("#divout");
    var cdiv=tdiv.html();//获取内部html内容
    odiv.html(cdiv);//添加html内容
    tdiv.addClass("trOdd");

    $("#tbStu tr:nth-child(even)").addClass("trOdd");//选择偶数行 添加属性

    //jquery事件操控
    $(".col-md-12").click(function(){
        alert("hello");
    });

    $("input:eq(0)").bind("click",function(){
        $("#divTip").append("<div>click one</div>");
    });

    function oClick(){
        $("#divTip").append("<div>click two</div>");;
    };
    $("input:eq(1)").bind("click",oClick);

    $("input:eq(2)").bind("click",function(){
        //$("input").unbind();//移除全部绑定事件
        $("input").unbind("click",oClick);
        $("#divTip").html("第二个按钮事件移除");
    });

});
</script>
</head>

<body class="container" style="margin-bottom:10px;">
    <div class="row">
        <div  class="col-md-6" id="divTmp"><ul><li>原始div</li></ul></div>
        <div class="col-md-6" id="divout"></div>
    </div>
    <div class="row" style="margin-bottom:10px;">
        <button class="bg-info btn col-md-12">click</button>
    </div>
    <div class="row">
        <input type="button" class="bg-info btn col-sm-4" value="click 1"/>
        <input type="button" class="btn-info btn col-sm-4" value="click 2"/>
        <input type="button" class="bg-info btn col-sm-4" value="removeEvent"/>
    </div>
    <div class="row" id="divTip" style="text-align:center;">

    </div>

    <table id="tbStu"class="tab-pane table mtable">
        <tr>
            <td>学号</td>
            <td>姓名</td>
        </tr>
        <tr>
            <td>1245</td>
            <td>siral</td>
        </tr>
        <tr>
            <td>54545</td>
            <td>log</td>
        </tr>
        <tr>
            <td>11558</td>
            <td>lisgal</td>
        </tr>
    </table>
</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值