我是jquery新手。当我按下擦除按钮时,我需要访问数据表的内容。我尝试了很多方法,但返回未定义。提前致谢。

$(document).ready(function() {
loadData()


});

函数loadData(){

var table = $('#example').DataTable({

    "ajax" : {
        "method" : 'POST',
        "crossDomain" : true,
        "dataType" : 'json',
        "contentType" : 'application/x-www-form-urlencoded; charset=UTF-8',
        "dataSrc" : "",
        "url" : "http://localhost:8081/Lakshmi_Service/admin/full"
    },

    "columns" : [ {
        "data" : "adminName"
    }, {
        "data" : "address"
    }, {
        "data" : "emailId"
    }, {
        "data" : "otp"
    }, {
        "data" : "expiryDate"
    }, {
        "data" : "mobileNo"
    }, {
        "targets" : -1,
        "data" : null,
        "defaultContent" : '<button>Erase</button>'
    } ],

    "iDisplayLength" : 5,
    "bAutoWidth" : true,
    "bSort" : false,
    "aLengthMenu" : [ [ 10, 25, 50, -1 ], [ 10, 25, 50, "All" ] ],
    "bDestroy" : true,
    "bFilter" : false,
    "bLengthChange" : false
});

$('#example tbody').on('click', 'button', function(event) {
    var aData = table.fnGetPosition(this);
    var oTableData = table.fnGetData(aData[0]);
    var ids = oTableData[aData].adminName;
    alert(ids);
});


}

当我单击“擦除”按钮以调用另一个服务时,我需要此adminName值。我的页面看起来像..

javascript - 使用动态创建的按钮单击访问jquery中的Datatable内容-LMLPHP

我的html页面是..



<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.11.3.js"></script>
<script
	src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" language="javascript"
	src="https://cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" language="javascript"
	src="https://cdn.datatables.net/1.10.9/js/dataTables.bootstrap.min.js"></script>
<script src="jquery-ui.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
	href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css"
	href="https://cdn.datatables.net/1.10.9/css/jquery.dataTables.min.css">
<link rel="stylesheet" type="text/css"
	href="https://cdn.datatables.net/1.10.9/css/dataTables.bootstrap.min.css">

<title>Guru Statistics</title>
</head>
<body>
	<table id="example" class="table table-striped table-bordered"
		cellspacing="0" width="60%">
		<thead>
			<tr title="Name">
				<th>Name</th>
				<th>address</th>
				<th>mailId</th>
				<th>otp</th>
				<th>Date</th>
				<th>Mobile No</th>
				<th>Erase</th>
			</tr>
		</thead>
	</table>

	<script type="text/javascript" src="home.js"></script>
</body>
</html>

最佳答案

您可以做的是将类添加到“列”(我使用aoColumns)dataTables对象的单元格(adminName,address ...)中,然后在click事件中使用这部分jQuery。

$(this).parents("tr").find(".adminName").text();


这样,您应该能够获得您单击的行的adminName的值

如果您不想添加类(应该!),我仍然可以通过这种方式获取数据:

$(this).parents("tr").find("td").first().text();


但我不鼓励您这样做,好像有一天您决定在adminName(例如,以“ Id”开头)之前添加新列一样,您的代码将检索Id而不是adminName,这可能会中断您的代码。

10-06 12:15