修复 JS 获取 change 错误

This commit is contained in:
Instrye 2018-03-01 17:24:40 +08:00 committed by GitHub
parent a82bee0216
commit 4b58719e7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ $("[data-action='delete']").click(function() {
}
});
})
$("[data-action='change'").click(function() {
$("[data-action='change']").click(function() {
var shareId = $(this).attr("data-id");
$(this).attr("disabled", "true");
var thisObj = $(this);