我正在尝试根据数据库值显示/隐藏列。我正在使用 Jquery、PHP 和 MySQL。
我正在使用 ajax 检索数据并隐藏列,但它没有隐藏 tbody 数据,只有标题被隐藏:
$(function ()
{
//-----------------------------------------------------------------------
// 2) Send a http request with AJAX http://api.jquery.com/jQuery.ajax/
//-----------------------------------------------------------------------
$.ajax({
url: 'account-number.php', //the script to call to get data
data: '', //you can insert url argumnets here to pass to api.php
//for example "id=5&parent=6"
dataType: 'json', //data format
success: function(data) //on recieve of reply
{
var user = data[1]; //get id
var table = data[2]; //get table name
var show = data[4]; //display or hide
//--------------------------------------------------------------------
// 3) Update html content
//--------------------------------------------------------------------
//recommend reading up on jquery selectors they are awesome
// http://api.jquery.com/category/selectors/
if (show == 0)
$('#'+ table +'tbody td:nth-child(1), #' + table + 'thead th:nth-child(1)').hide();
//$('#'+ table +'td:nth-child('+ column +'),th:nth-child('+ column +')').hide();
if (show == 1)
$('#'+ table +'tbody td:nth-child(1), #' + table + 'thead th:nth-child(1)').show();
}
});
});
控制台中没有错误。有没有一种特定的方法可以根据数据库值在 Jquery 中隐藏/显示带有数据表的表数据?
任何帮助或建议,将不胜感激!