ลบข้อมูลออกจาก select box
// ฟังก์ชันที่ใช้ในการลบข้อมูลออกจาก select box [code] function removeAllOptions(from){if(!hasOptions(from)){return;}for(var i=(from.options.length-1);i>=0;i--){from.options[i] = null;}from.selectedIndex = -1;} function hasOptions(obj){if(obj!=null && obj.options!=null){return true;}re [...]
-
คนทำเว็บ 2016-06-14 15:40:15

- 4,138