gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 03:48:55 25 4
gpt4 key购买 nike

我实际上需要从服务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/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com