14.3.4移动和重排选项
Posted jokes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了14.3.4移动和重排选项相关的知识,希望对你有一定的参考价值。
1、appendChild()
var selectbox1 = document.getElementById(‘selLocations1‘); var selectbox2 = document.getElementById(‘selLocations2‘); selectbox2.appendChild( selectbox1.options[0] );
2、insertBefore()
var optionToMove = selectbox.options[1];
selectbox.insertBefore(optionToMove,selectbox.options[optionToMove.index+2]);
以上是关于14.3.4移动和重排选项的主要内容,如果未能解决你的问题,请参考以下文章