如何使用Ajax从选定的行获取ID

时间:2019-07-12 17:09:04

标签: php ajax oop crud

我有两页,第一页是您可以在其中查看信息的页面,然后单击行的编辑图标,它将转到第二页,其ID为显示数据。显示数据后,可以在第二页上更新数据等。

button click getting id in view file code

view file code

edit file code

1 个答案:

答案 0 :(得分:0)

您可以从网址中获取ID。使用此ID,并通过调用$( window ).load(function() {// Run code});.的ajax在编辑表单中填写数据

 var getUrlParameter = function getUrlParameter(sParam) {
            var sPageURL = window.location.search.substring(1),
                sURLVariables = sPageURL.split('&'),
                sParameterName,
                i;
  for (i = 0; i < sURLVariables.length; i++) {
            sParameterName = sURLVariables[i].split('=');

            if (sParameterName[0] === sParam) {
                return sParameterName[1] === undefined ? true : 
            decodeURIComponent(sParameterName[1]);
            }
        }
    };

    id = getUrlParameter('Edit');
    console.log(id);//check console