js设置元素不能编辑
$("#startLocation").attr("readOnly",true);
$("#formType3 input,#formType3 textarea").each(function () {$(this).attr("readOnly",true);});
js设置元素可以编辑
$("#startLocation").attr("readOnly",false);
js设置元素不能编辑
$("#startLocation").attr("readOnly",true);
$("#formType3 input,#formType3 textarea").each(function () {$(this).attr("readOnly",true);});
js设置元素可以编辑
$("#startLocation").attr("readOnly",false);