javascript - 如何在表格行中生成动态按钮并在单击按钮时打开新页面

标签 javascript jquery html cordova

我实际上需要从服务url生成动态表,然后生成动态表。这是我解决的,但我想要的是

  1. 如何通过点击事件在每个表格行上生成动态按钮。
  2. 生成按钮后,我们如何将点击事件分配给按钮,我的意思是假设表格中有四列,例如日期、ID号、名称、位置,然后单击每列或与该单元格相关,它必须重定向到新页面。

  • 如果单击表格行并且有 4 列,例如日期、ID 号、名称、位置,则单击事件将以日期作为参数,并且单击事件函数然后它必须继续到下一页/重定向

    $('#btn_Day').click(function () { 
    
    var ex = document.getElementById("dpp_info");
    var clOptions = ex.options[ex.selectedIndex].value;
    var clOptions1 = ex.options[ex.selectedIndex].text;
    
    var dt = todaydate;
    var dt1 = todaydate;
    
    $.ajax({
        type: 'GET',
        url: xxxxx.xxxxx.xxxxx,
        data: frmDate_=" + dt + "&toDate_=" + dt1 + "",
    
        success: function (resp) {
    
            var Location = resp;
    
            var tr;        
    
            for (var i = 0; i < Location.length; i++) {
    
                tr = tr + "<tr>";
                 tr = tr + "<td  style='height:20px' align='left'>" + Location[i].Name + "</td>";
                tr = tr + "<td  style='height:20px' align='left'>" +  Location[i].Date + "</td>";
                 tr = tr + "<td style='height:20px' align='left'>" + Location[i].IdNum + "</td>";
    
    
                tr = tr + "</tr>";
    
            };
    
            document.getElementById('Wise').innerHTML = "<table class='r'>" + "<tr><thead ><th  style='height:20px'>Location</th>"
            + "<th  style='height:20px'>Date</th>" + "<th  style='height:20px'>Id Num</th>" + "</tr></thead>"
            + tr +
            "<tr></tr>" +
            "</table>";
            document.getElementById('Wise').childNodes[0].nodeValue = null;
    
        },
        error: function (e) {
    
            window.plugins.toast.showLongBottom("Please Enable your Internet connection");
    
        }
    });
    });
    

    enter image description here

  • 现在在图像中,如果您看到有四列,假设我单击 idnumb,并且与该特定号码相关的记录必须显示在单独的页面中

    寻求帮助!

    最佳答案

    经过对此进行更多讨论后,关键是仅使用处理程序并使用属性传递任何值。你可以在这里看到 fiddle

    https://jsfiddle.net/p2fpbkuo/3/

    $('.button-click').off();
    $('.button-click').on('click', function () {
        // navigate to new page
     // console.log('button click')
    
     // what you could do here is get the serialnumber which is an attribute on the button 
     var id = $(this).attr('data-id') // as long as this is unique this should always work
    
     var filteredResults = results.filter(function (result) {
      if (result.SerialNumber.toString() === id.toString()) {
        return result;
      }
    });
    
    var selectedRowValues = filteredResults[0];
    
    // this will contain all the values for that row
    console.log(selectedRowValues)
    
     // var dataValue = $(this).attr('data-url'); // dont't need this any more
     window.open(selectedRowValues.Url)
    });
    

    关于javascript - 如何在表格行中生成动态按钮并在单击按钮时打开新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45250939/

    相关文章:

    javascript - 在隐藏和显示元素之间切换

    javascript - CSS 在按钮悬停时更改主体背景颜色?

    javascript - 通过单击类 y 的元素来更改类 x 的元素的显示(JS)

    javascript - 如何在点击时更改小部件参数

    javascript - 如何让Div中的所有链接在同一个窗口中打开

    Jquery延迟CSS div位置

    javascript - 在 WebBrowser 控件中加载本地文件

    javascript - jQuery 用于数值加减的 css 语法是什么?

    jquery - 重置内联 CSS 样式

    javascript - 更改引导导航栏中的事件类不保留在继承的 Django 模板中