三 操作元素(属性 CSS 和 文档处理)

3.1 属性操作

$("p").text();
$("p").html();
$(":checkbox").val();

$(".test").attr("yanga11ang");//一个参数是取属性值
$(".test").attr("checked","checked");//设定属性
$(":checkbox").removeAttr("checked");//删除属性

$(".test").prop("checked",true);//设定属性 (不支持自定义的)
$(".test").removeProp("checked");//删除属性

$(".test").addClass("hide");

jquery遍历写法

li=[10,20,30,40];
dic={name:"yanga11ang",sex:"male"};
$.each(li,function(i){
    console.log(i);//0;1;2;3;可以一个参数
});
$.each(li,function(i,x){
    console.log(i,x);//0 10;1 20;2 30; 3 40;
});

$.each(dic,function(i){
    console.log(i);//name;sex;可以一个参数
});
$.each(dic,function(i,x){
    console.log(i,x);//name yanga11ang;sex male;可以一个参数,只有
});

jquery 循环修改

$("table tr").each(li,function(){
    $(this).html();//拿出每一个的tr里面的html的内容
});

实例 编辑框正反选

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="js/jquery-2.2.3.js"></script>
    <script> function selectall(){ $("table :checkbox").prop("checked",true) } function che(){ $("table :checkbox").prop("checked",false) } function reverse(){ $("table :checkbox").each(function(){ if ($(this).prop("checked")){ $(this).prop("checked",false) } else { $(this).prop("checked",true) } }); } </script>
</head>
<body>
    <button onclick="selectall();">全选</button>
    <button onclick="che();">取消</button>
    <button onclick="reverse();">反选</button>
    <table border="1">
        <tr>
            <td><input type="checkbox"></td>
            <td>111</td>
        </tr>
        <tr>
            <td><input type="checkbox"></td>
            <td>222</td>
        </tr>
        <tr>
            <td><input type="checkbox"></td>
            <td>333</td>
        </tr>
        <tr>
            <td><input type="checkbox"></td>
            <td>444</td>
        </tr>
    </table>
</body>
</html>

实例 模态对话框

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>批量编辑</title>
    <!--<link rel="stylesheet" href="css/mycss.css" />-->
    <style> *{ margin: 0; padding: 0; } body { font-family: 'Open Sans', sans-serif; font-weight: 300; line-height: 1.42em; color:rebeccapurple; background-color:goldenrod; } h1 { font-size:3em; font-weight: 300; line-height:1em; text-align: center; color: #4DC3FA; } .blue { color: #185875; } .yellow { color: #FFF842; } /*!*弹出层罩子*!*/ #full { background-color:gray; left:0; opacity:0.7; position:absolute; top:0; filter:alpha(opacity=30); } .modified { background-color: #1F2739; border:3px solid whitesmoke; height:400px; left:50%; margin:-200px 0 0 -200px; padding:1px; position:fixed; /*position:absolute;*/ top:50%; width:400px; display:none; } li { list-style: none; margin: 20px 0 0 50px; color: #FB667A; } input[type="text"] { padding: 10px; border: solid 1px #dcdcdc; /*transition: box-shadow 3s, border 3s;*/ } .iputbutton { margin: 60px 0 0 50px; color: whitesmoke; background-color: #FB667A; height: 30px; width: 100px; border: 1px dashed; } .container th h1 { font-weight: bold; font-size: 1em; text-align: left; color: #185875; } .container td { font-weight: normal; font-size: 1em; } .container { width: 80%; margin: 0 auto; } .container td, .container th { padding-bottom: 2%; padding-top: 2%; padding-left:2%; } /*单数行*/ .container tr:first-child { background-color: red; } /*偶数行*/ .container tr:not(first-child){ background-color: cyan; } .container th { background-color: #1F2739; } .container td:last-child { color: #FB667A; } /*鼠标进过行*/ .container tr:hover { background-color: #464A52; } /*鼠标进过列*/ .container td:hover { background-color: #FB667A; color: #403E10; font-weight: bold; transform: translate3d(5px, -5px, 0); } </style>

    <script src="jquery-2.2.3.js"></script>
    <script> //点击【编辑】显示 $(function () { $("table[name=host] tr:gt(0) td:last-child").click(function (event) { alert("234"); // $("#full").css({height:"100%",width:"100%"}); $(".modified").data('current-edit-obj', $(this)); $(".modified,#full").show(); var hostname = $(this).siblings("td[name=hostname]").text(); $(".modified #hostname").val(hostname); var ip = $(this).siblings("td[name=ip]").text(); $(".modified #ip").val(ip); var port = $(this).siblings("td[name=port]").text(); $(".modified #port").val(port); }); //取消编辑 $(".modified #cancel").bind("click", function () { $(".modified,#full").hide(); }); // 确定修改 $(".modified #ok").bind("click", function (event) { var check_status = true; var ths = $(".modified").data('current-edit-obj'); var hostname = $(".modified #hostname").val().trim(); var ip = $(".modified #ip").val().trim(); var port = $(".modified #port").val().trim(); var port = parseInt(port); console.log(port); // 端口为空设置为22 if (isNaN(port)) { alert("您没有设置正常的SSH端口号,将采用默认22号端口"); var port = 22; } else if ( port > 65535) { // 如果端口不是一个数字 或者端口大于65535 var check_status = false; $(".modified #port").css("border-color","red"); alert("端口号超过范围!"); }; // 主机和ip不能是空 if ( hostname == ""){ var check_status = false; $(".modified #hostname").css("border-color","red"); } else if (ip == "") { var check_status = false; $(".modified #ip").css("border-color","red"); }; if (check_status == false){ return false; } else{ //$(this).css("height","60px") 为什么不用$(this),而用$() $(ths).siblings("td[name=hostname]").text(hostname); $(ths).siblings("td[name=ip]").text(ip); $(ths).siblings("td[name=port]").text(port); $(".modified,#full").hide(); }; }); }); </script>
</head>
<body>
    <h1>
    <span class="blue">&lt;</span>Homework1<span class="blue">&gt;</span> <span class="yellow">HostList</span>
    </h1>
    <div id="full">
        <div class="modified">
            <li>主机名:<input id="hostname" type="text" value="" />*</li>
            <li>ip地址:<input id="ip" type="text" value="" />*</li>
            <li>端口号:<input id="port" type="text" value="" />[0-65535]</li>
            <div id="useraction">
                <input class="iputbutton" type="button" name="确定" id="ok" value="确定"/>
                <input class="iputbutton" type="button" name="取消" id="cancel" value="取消"/>
            </div>
        </div>
    </div>
    <table class="container" name="host">
        <tr>
            <th><h1>主机名</h1></th>
            <th><h1>IP地址</h1></th>
            <th><h1>端口</h1></th>
            <th><h1>操作</h1></th>
        </tr>
        <tr>
            <td name="hostname">web01</td>
            <td name="ip">192.168.2.1</td>
            <td name="port">22</td>
            <td>编辑 </td>
        </tr>
        <tr>
            <td name="hostname">web02</td>
            <td name="ip">192.168.2.2</td>
            <td name="port">223</td>
            <td>编辑 </td>
        </tr>
        <tr>
            <td name="hostname">web03</td>
            <td name="ip">192.168.2.3</td>
            <td name="port">232</td>
            <td>编辑 </td>
        </tr>
        <tr>
            <td name="hostname">web04</td>
            <td name="ip">192.168.2.4</td>
            <td name="port">232</td>
            <td>编辑 </td>
        </tr>
    </table>
</body>
</html>

更多相关文章

  1. Google地图信息窗口左箭头,右箭头传递TypeError:无法读取未定义的
  2. 开发学习Jquery实例---双击表格弹出模态对话框,编辑提交数据
  3. 通过ajax POST提交nicEdit文本编辑器的值,不起作用
  4. 获取复选框的文本属性
  5. 推荐web 前端代码的编辑分享平台——RunJS
  6. 将JSON结果返回给ajax请求的MVC ErrorHandling属性仅适用于local
  7. 可编辑的表格:jQuery+PHP实现实时编辑表格字段内容
  8. JQuery属性与样式――.val()和增加样式.addClass()
  9. 关于jQuery获取html标签自定义属性值或data值

随机推荐

  1. Android(安卓)DynamicLoadApk 开源插件开
  2. 关于Android不能启动的问题
  3. 怎么设置Android Activity的动画
  4. Android Market google play store帐号注
  5. Rockie's Android Porting Guide(1)——Bui
  6. Linux安装Android SDK时出现Failed to fe
  7. android底层开发
  8. 修改EditText的光标颜色
  9. Ted Mosby - 一个MVP框架的软件架构
  10. 弹出窗口显示不出ListView的条目