超详细的HTML 标签用法及技巧介绍


https://www.w3cschool.cn/htmltags/tag-select.html

HTML 元素用来创建下拉列表。

表单数据提交给服务器时包括 name 属性。

提示和注释

提示:





尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 标签支持 HTML 的全局属性。


事件属性

标签的使用技巧总结


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);

}


9.设置select option被选中


function removeSelect(){

// 向办件人员下拉列表动态添加员工

for ( var i = 0; i < json.length; i++) {

var newOption = new Option(json[i].empname, json[i].empid, i);

//向办件人员下拉列表添加员工信息

objDeal.options.add(newOption);

//客户业务员的Id不为空

if(empbyDealEmpId!="" || empbyDealEmpId!=0){

//员工id等于下拉列表中的值,则下拉列表被选中

if(empbyDealEmpId==objDeal.options[i].value){

//判断此下拉列表被选中

objDeal.options[i].selected=true;

}

}

}

}


案例:

如何让html里的select无法选择?

假设有一个select,里面有几个option,因为测试需要,要固定成为其中的一个option,不能选择其他,该怎么做呢?如果disabled这个select,结果就是根本没法取到值了。有没其他的方法? readonly,也是不可以的,依旧可以选择。

答案:只放一个option就可以了 或者给option加上disabled="disabled"
<form id="form1" name="form1" method="post" action="">
  <select name="select">
    <option>aaoption>
	<option disabled="disabled">bboption>
	<option>ccoption>
  select>
form>

怎么调整select的宽度?


答案:可以在select标签中加入style样式
<style>.s1{ width: 200px;}style>
<select class="s1">
  <OPTION>很长很长也能显示OPTION>
  <OPTION>很长很长也能显示OPTION>
select>

html select标签加链接3种方法

html select标签加链接的方法有很多,接下来为大家介绍下几个比较经典的,,感兴趣的朋友可以参考下,希望可以帮助到你。

第一种 : 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>select加链接title> 
head> 
<body> 
<SCRIPT language=javascript> 
 
SCRIPT> 
<Select onchange=mbar(this) name="select"> 
<OPTION selected>=== 合作伙伴 ===OPTION> 
<OPTION value="http://www.baidu.com">百度OPTION> 
<OPTION value="http://www.w3cschool.cn">w3cschool在线教程OPTION> 
<OPTION value="http://www.youj.com">优聚OPTION> 
Select> 
body> 
html> 

第二种
<select name="pageselect" onchange="self.location.href=options[selectedIndex].value" > 
<OPTION value="http://www.baidu.com">百度OPTION> 
<OPTION value="http://www.w3cschool.cn">w3cschool在线教程OPTION> 
select> 

第三种带跳转按钮的
<html><head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>select选择-按钮跳转title> 
<script type="text/javascript"> 
function setsubmit() 
{ 
if(mylink.value == 0) 
window.location='http://www.baidu.com'; 
if(mylink.value == 1) 
window.location='http://www.w3cschool.cn'; 
if(mylink.value == 2) 
window.location='http://www.youj.com'; 
} 
script> 
head> 
<body> 
<select name="mylink" id="mylink"> 
<OPTION value="0">百度OPTION> 
<OPTION value="1">w3cschool在线教程OPTION> 
<OPTION value="2">优聚OPTION> 
select> 
<input type="button" id="btn" value="提交" onclick="setsubmit(this)" /> 
body> 
html> 



你可能感兴趣的:(超详细的HTML 标签用法及技巧介绍)