900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > html中关于标签如何设置默认选中的选项详解

html中关于标签如何设置默认选中的选项详解

时间:2023-09-23 14:12:30

相关推荐

html中关于标签如何设置默认选中的选项详解

web前端|html教程

select,html,如何

web前端-html教程

方法有两种。

登录分销系统源码下载,vscode 配置初始化,Ubuntu下conio,tomcat什么是容器,scrapy爬虫信息,php数组顺序反转,石家庄seo服务费用,国外多语言网站源码,视频门户 模板lzw

第一种通过的属性来设置选中项,此方法可以在动态语言如php在后台根据需要控制输出结果。

114la源码安装要求,vscode中加一个超链接,ubuntu vlc插件,tomcat7 页面乱码,爬虫python 宝塔,仿安居客 php,seo技术教学课程手游推广lzw

123

第二种为通过前端js来控制选中的项:

刷赞软件源码,用vm打开ubuntu,Tomcat自定义端口,英汉对照爬虫,微汽车平台php源码,南陵seolzw

function change(){document.getElementById("sel")[2].selected=true;}123

获取标签选中项文本的js代码为:

var val = document.all.Item.options[document.all.Item.selectedIndex].textvar i=document.getElementById( sel ).options[document.getElementById( sel ).selectedIndex].value;

一些其它操作标签的技巧如下:

1)动态创建select

function createSelect(){var mySelect = document.createElement( "select" );mySelect.id = "mySelect" ;document.body.appendChild(mySelect);}

2)添加选项option

function addOption(){//根据id查找对象,var obj=document.getElementById( mySelect );//添加一个选项obj.add( new Option( "文本" , "值" ));}

3)删除所有选项option

function removeAll(){var obj=document.getElementById( mySelect );obj.options.length=0;}

4)删除一个选项option

function removeOne(){var obj=document.getElementById( mySelect );//index,要删除选项的序号,这里取当前选中选项的序号var index=obj.selectedIndex;obj.options.remove(index);}

5)获得选项option的值

var obj=document.getElementById( mySelect );var index=obj.selectedIndex; //序号,取当前选中选项的序号var val = obj.options[index].value;

6)获得选项option的文本

var obj=document.getElementById( mySelect );var index=obj.selectedIndex; //序号,取当前选中选项的序号var val = obj.options[index].text;

7)修改选项option

var obj=document.getElementById( mySelect );var index=obj.selectedIndex; //序号,取当前选中选项的序号var val = obj.options[index]= new Option( "新文本" , "新值" );

8)删除select

function removeSelect(){var mySelect = document.getElementById( "mySelect" );mySelect.parentNode.removeChild(mySelect);}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。