JQuery

Posted hinimix

tags:

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

JQuery

 

 

实例:

多选/复选

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="JQuery-1.12.4.js"></script>
</head>
<body>
    <input type="button" value="all" onclick="chooseAll()">
    <input type="button" value="noAll" onclick="chooseNo()">
    <input type="button" value="reverseAll" onclick="reverseAll()">

    <table border="1">
        <thead>
            <tr>
                <th>checked</th>
                <th>ip</th>
                <th>port</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td><input type="checkbox"> </td>
                <td>2.2.2.2</td>
                <td>32</td>
            </tr>
            <tr>
                <td><input type="checkbox"> </td>
                <td>2.3.3.3</td>
                <td>33</td>
            </tr>
            <tr>
                <td><input type="checkbox"> </td>
                <td>2.4.4.4</td>
                <td>34</td>
            </tr>
        </tbody>
    </table>

</body>
</html>

<script>
    function chooseAll(){
        $(‘:checkbox‘).prop(‘checked‘, true);
    }

    function chooseNo(){
        $(‘:checkbox‘).prop(‘checked‘, false);
    }

    function reverseAll(){
        $(‘:checkbox‘).each(function(k){
            //this:当前循环的每一个元素
            //k key-index,
            console.log(k, this)
            if(this.checked){
                this.checked = false
            }
            else{
                this.checked = true
            }
        })
    }
</script>

 

以上是关于JQuery的主要内容,如果未能解决你的问题,请参考以下文章

markdown 在WordPress中使用jQuery代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

很实用的JQuery代码片段(转)

几个有用的JavaScript/jQuery代码片段(转)

几个非常实用的JQuery代码片段

高效Web开发的10个jQuery代码片段