Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

removeItemAt

removeItemAt( index )
戻り値の型: 要素
要素内の指定した index の子項目を削除します。このメソッドは削除した項目を返します。
<script type="text/javascript">
function removeSelectedItem() {
  var myListBox = document.getElementById('myListBox');

  if(myListBox.selectedIndex == -1){
    return; // no item selected so return
  } else {
    myListBox.removeItemAt(myListBox.selectedIndex);
  }
}
</script>

<button label="Remove selected item" oncommand="removeSelectedItem()" />

<listbox id="myListBox">
  <listitem label="Alpha" />
  <listitem label="Beta" />
  <listitem label="Oscar" />
  <listitem label="Foxtrot" />
</listbox>

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: ethertank, Marsf
 最終更新者: ethertank,