2 1 js 基礎 select深入

2022-02-21 15:08:42 字數 752 閱讀 1155

select

獲取select下的所有option

用op=select.options

option屬性:op[1].value,op[1].text;

//獲取選中項的索引

os.selectedindex;

//獲取當前選中項

select.options[os.selectedindex];

1、獲取選中項的文字:

var os=document.getelementsbytagname('select')[0];

var aop=os.options;//

獲取選中項

os.onchange=function

()

2、新增乙個選項

var os=document.getelementsbytagname('select')[0];

var op=new option('四川','四川');//

建立乙個新的option選項

os.add(op);

3、刪除乙個選項

var os=document.getelementsbytagname('select')[0];

var aop=os.options;//

獲取選中

os.remove(0);//

刪除第乙個

//全刪

for(var i=0;i)

21 函式基礎

1 什麼是函式 具備某一功能的工具 函式 工具的使用 事先準備好好工具 函式的定義 遇到應用場景拿來就用 函式的呼叫 2 為何要有函式 1 程式的組織結構不清晰 可讀性差 2 如果要用到重複的功能,只能拷貝功能的實現 冗餘 3 可擴充套件性差 3 如何用函式 函式的使用原則 先定義,後呼叫 定義函式...

2 1基礎演算法

1.雙指標 2.位運算 3.離散化 1 去除重複元素 vectorall sort all.begin all.end 排序all.erase unique all.begin all.end all.end 刪除末尾的重複元素 2 include include include using nam...

MATLAB基礎2 1 語言基礎

輸入輸出 fscanf whos 同時檢視多個輸出 whos v1 v2 不加逗號fullfile 構建檔名f fullfile myfolder mysubfolder myfile.m myfolder mysubfolder myfile.m genpath 生成路徑名稱 生成的路徑包含該資料...