表格行
tr(data-index='{{index}}')
單擊行內的一個td,然后獲取該行獲取index的值
$(e.target).parents('tr').data('index');
在瀏覽器保存數據
localStorage.setItem('projectId','123');
取數據
localStorage.getItem('projectId')
復選框是否可用
$('male').prop('checked',false);
在fileList下找到p標簽然后去掉class
$("#fileList").find('p').removeClass('am-text-primary');
onclick='handleFileClick(event)')
var$target =$(e.target);