Commit 8a0cd787 by 庄欣

add is_del

parent 9ecc5728
......@@ -216,8 +216,9 @@ function goNext() {
var isVideoDom = document.getElementsByName("is_video");
if (isVideo()) {
for (var i in isVideoDom) {
if (isVideoDom[i].value.toString() === "1") {
if (isVideoDom[i].value != null && isVideoDom[i].value.toString() === "1") {
isVideoDom[i].setAttribute("checked", "checked");
break;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment