我里面有 li 我包含 td。
var values = '';
$("#list4 li.add table .mytd").each(function () {
values = $(this).html() + '|' + values;
});
document.getElementById("MainContent_uscRetailParameters_hdRetailCustomerGroup").value = values;
__doPostBack('<%=txtRCCode.ClientID%>', '');
当我在隐藏的字段中捕获时,它是这样的
[alot of spaces]CHARMINSENSITIVE-1
有很多空格我怎样才能在所有浏览器中检索确切的值。在 Internet Explorer 中找不到此空间。但在 Firefox 中,它带有空格,我怎么能捕捉到确切的 td 值。
string lvValues = hdProductGroup.Value;
//string trim = lvValues.Replace(" ", "");
string trim = lvValues.Replace("\r", "");
trim = trim.Replace("\r", "");
trim = trim.Replace("\n", "");
trim = trim.Replace("\t", "");
string str = trim;
string[] list = str.Split('|');