jQuery - 在行位置上循环选择标记

时间:2017-07-22 07:33:43

标签: jquery loops select html-table each

如何基于所选行循环选择标记选项。请参阅我的截图

enter image description here

用户点击更新按钮后,我需要遍历位于所选行上的3个选择标签选项。 我有这个代码已经处理了select事件。

$('select.selectedsystem').on('change', function () {
        var selectedText = $(this).val();
        var user = $(this).parents('td').prev().text();
        var syslvl = $(this).parents('td').next();
        var sysbranch = $(this).parents('td').nextAll().eq(1);
        var sysunit = $(this).parents('td').nextAll().eq(2)
        syslvl.text("Retrieving...");
        sysbranch.text("Retrieving...");
        sysunit.text("Retrieving...");

    }).change();

1 个答案:

答案 0 :(得分:0)

如果是表单,则可以使用每个循环和表单id循环表单元素。

请参阅以下代码

$("#form :select").each(function(){
        // Your stuff
});