You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AiShopping/AiGouWu\Admin\Js\ModelField.js

16 lines
373 B

// JScript 文件
function SelectModelType() {
var TypeCount = document.getElementsByName("Type");
for (var i = 1; i < TypeCount.length; i++) {
var DivType = eval("Div" + TypeCount[i].value);
if (TypeCount[i].checked) {
DivType.style.display = "";
}
else {
DivType.style.display = "none";
}
}
}