为了账号安全,请及时绑定邮箱和手机立即绑定

禁用并启用使用 Java 脚本选择值

禁用并启用使用 Java 脚本选择值

蝴蝶不菲 2022-09-29 17:30:25
我使用的是下面的代码。如果我单击“测试 1”或“测试 2”或选择“全部”,将创建新行。如果执行类型为 Get,我需要禁用 DatatType 和预期集值列,如果我从“执行类型”中选择“设置”,则应启用“数据类型”和“预期集值”列。如何实现这一点?我正在Html.erb文件中使用此代码。如何创建单独的js方法?https://jsfiddle.net/bx5fa2vu/$("#all").on("click", function() {  if ($(this).is(":checked")) {    let boxes = $("#paramTable input[type='checkbox']").not(this).not(":checked");    boxes.each(function() {      $(this).click();    });  } else {    let boxes = $("#paramTable input[type='checkbox']:checked").not(this);    boxes.each(function() {      $(this).click();    });  }});$("#paramTable input[type='checkbox']:not(#all)").on("click", function() {  if ($(this).is(":checked")) {    let name = $(this).parent("td").next("td").next("td").text().trim();    let newname = name.split('.').join('');    let newrow = $("<tr>");    let newcell = $("<td> ");    let newSel=$("<select class='ExeType' name='ExeTypeValue'><option value='getData'>Get</option><option value='SetData'>Set</option></select>")    newcell.append(newSel);        newrow.append(newSel);    let newcell1 = $("<td> ");    let newinput = $("<input type='text' class='parameterName' name='" + newname + "' id='" + newname + "' value='" + name + "'/>");    newcell1.append(newinput);    newrow.append(newcell1); let newcells = $("<td><select class='parameterDscription' name='parameter_description'><option value=''>Select Data Type</option><option value='OCTET_STRING'>String</option><option value='INTEGER'>Integer</option><option value='INTEGER32'>Unsigned Integer</option><option value='IPADDRESS'>IP Address</option><option value='x'>Hex String</option></select></td><td><input type='text' class='expectedValue' name='expected_value'></td>");     newrow.append(newcells);    $("tbody.parameter_table").append(newrow);  }})
查看完整描述

1 回答

?
神不在的星期二

TA贡献1963条经验 获得超6个赞

你可以这样做。请注意,最初不会禁用这些字段,因为在“执行类型选择”字段中未选择任何值。也许您想通过在选择字段中添加带有文本“选择类型”的初始选项来使这一点更加清晰,就像您为数据类型选择一样。


$("#all").on("click", function() {

  if ($(this).is(":checked")) {

    let boxes = $("#paramTable input[type='checkbox']").not(this).not(":checked");

    boxes.each(function() {

      $(this).click();

    });

  } else {

    let boxes = $("#paramTable input[type='checkbox']:checked").not(this);

    boxes.each(function() {

      $(this).click();

    });

  }

});




$("#paramTable input[type='checkbox']:not(#all)").on("click", function() {

  if ($(this).is(":checked")) {

    let name = $(this).parent("td").next("td").next("td").text().trim();

    let newname = name.split('.').join('');

    let newrow = $("<tr>");

    let newcell = $("<td> ");

    let newSel = $("<select class='ExeType' name='ExeTypeValue'><option value='getData'>Get</option><option value='SetData'>Set</option></select>")

    newcell.append(newSel);

    newrow.append(newSel);

    let newcell1 = $("<td> ");


    let newinput = $("<input type='text' class='parameterName' name='" + newname + "' id='" + newname + "' value='" + name + "'/>");

    newcell1.append(newinput);


    newrow.append(newcell1);

    let newcells = $("<td><select class='parameterDscription' name='parameter_description'><option value=''>Select Data Type</option><option value='OCTET_STRING'>String</option><option value='INTEGER'>Integer</option><option value='INTEGER32'>Unsigned Integer</option><option value='IPADDRESS'>IP Address</option><option value='x'>Hex String</option></select></td><td><input type='text' class='expectedValue' name='expected_value'></td>");

    newrow.append(newcells);

    $("tbody.parameter_table").append(newrow);

  } else {

    let name = $(this).parent("td").next("td").next("td").text();

    let newname = name.split('.').join('');

    console.log("newname: " + newname)

    $("#addParamTable").find("#" + newname).closest("tr").remove();

    $("#all").prop("checked", false);

  }

})


$(document).on("change", ".ExeType", function() {

  let type = $(this).val();

  if (type === "getData") {

    $(this).closest("tr").find(".parameterDscription").attr("disabled", "disabled");

    $(this).closest("tr").find(".expectedValue").attr("disabled", "disabled");

  } else {


    $(this).closest("tr").find(".parameterDscription").removeAttr("disabled");

    $(this).closest("tr").find(".expectedValue").removeAttr("disabled");


  }

});

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<table id="paramTable">

  <tr>

    <td><input type="checkbox" id="all" /></td>

    <td>Select all</td>

    <td></td>

  </tr>

  <tr>

    <td><input type="checkbox" /></td>

    <td>Testing 1</td>

    <td>1.2.3.4.5</td>

  </tr>

  <tr>

    <td><input type="checkbox" /></td>

    <td>Testing 2</td>

    <td>.1.3.4.5.8</td>

  </tr>

</table>

<div class="tab-content">

  <div id="protocol" class="tab-pane fade in active">

    <div class="span3 border-0" style="overflow: scroll">

      <table id="addParamTable" class="table table-bordered">

        <thead>

          <tr class="info">

                      <th>Excution Type</th>


            <th>Parameter Name</th>

            <th>Data Type</th>

            <th>Expected Set Value</th>


          </tr>

        </thead>

        <tbody class="parameter_table">

        </tbody>

      </table>

      </div>

   </div>

 </div>


查看完整回答
反对 回复 2022-09-29
  • 1 回答
  • 0 关注
  • 65 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信