我需要像以下
<td>
<a href="/Employee/Edit/1001320">Edit</a> |
</td>
我写了如下
var employeeaction = $('<td>').append('<a href="/Employee/Edit/'
+element.id+'">Edit</a> |');
我通过以下代码解析表格并获取 element.id
$('#EmployeeTable tr:not(:nth-child(1), :nth-child(2))').each(function () {
// alert($(this).find('td').eq(0).text());
var employee = {};
employee.id = $(this).find('td').eq(0).text();
employee.presenAddress = $(this).find('td').eq(1).text();
employee.shortName = $(this).find('td').eq(2).text();
employee.mobileNumber = $(this).find('td').eq(3).text();
employee.department = $(this).find('td').eq(4).text();
employee.designation = $(this).find('td').eq(5).text();
employee.action = $(this).find('td').eq(6).text();
employeeList.push(employee);
});
当我点击它时,它给了我喜欢
本地主机:10845/员工/编辑/%201001097
我需要
本地主机:10845/员工/编辑/1001097
但它不起作用。我该怎么做?