onpropertypchange_表单特效: function changeBox(status) { textbox.style.display = status : none } var propName = event.propertyName var propValue = this[propName] switch(propName) { case checked: changeBox(propValue) break; }
导读onpropertypchange_表单特效: function changeBox(status) { textbox.style.display = status : none } var propName = event.propertyName var propValue = this[propName] switch(propName) { case checked: changeBox(propValue) break; }
function changeBox(status) { textbox.style.display = status ? "" : "none" } script>
var propName = event.propertyName var propValue = this[propName]
switch(propName) { case "checked": changeBox(propValue) break; } script>
onpropertypchange_表单特效
onpropertypchange_表单特效: function changeBox(status) { textbox.style.display = status : none } var propName = event.propertyName var propValue = this[propName] switch(propName) { case checked: changeBox(propValue) break; }