- 浏览: 1737061 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (337)
- javaScript校验 (11)
- java (31)
- java连接数据库 (1)
- js应用 (41)
- JQuery (15)
- linux操作命令 (12)
- loadrunner测试 (5)
- tomcat (18)
- 数据库 (12)
- eclipse (7)
- 触发器 (7)
- 表单 (3)
- ibatis (6)
- oracle (4)
- xml (1)
- Exception (6)
- spring (16)
- struts (4)
- struts 标签 (2)
- sql (8)
- sql server (6)
- 其它 (18)
- Apache (2)
- 电脑故障 (4)
- java 线程 (1)
- dwr (8)
- jackey (18)
- 总结 (34)
- gcc linux (2)
- extjs 学习 (5)
- 网站建设 (4)
- 健康 (2)
- 房地产知识 (1)
- hibernate (3)
- mysql (7)
- linux (13)
- svn (1)
最新评论
-
阳光泛滥的日子:
很好用谢谢
java.net.URISyntaxException的解决办法 -
linjianqing:
现在有更好的处理方式吗?我正也为这发愁
applet访问打印机出现的问题 -
ruyi574812039:
非常感谢您的总结!想问几个问题!假设三个项目分别以静态部署的三 ...
在Tomcat中部署Web程序的几种方式 -
yangguo:
太j8麻烦了
Spring3.1中使用缓存注解及Shiro的缓存联合 -
bellawang:
很好用谢谢
java.net.URISyntaxException的解决办法
This is an option box:
<form name="testform"> <select name="testselect"> <option value="first">first option</option> <option value="second">second option</option> <option value="third">third option</option> <option>your browser can't handle this script</option> </select> </form>
To access options in a select box, you use the following code:
document.forms['testform'].testselect.options[i]
where i
is the number of the option you want to access. Remember that the first option is options[0]
, the second one is options[1]
etc.
Now if you want to delete the option, do
document.forms['testform'].testselect.options[i] = null;
By making it null
, the option is completely removed from the list. Note that this also affects the numbering of the options. Suppose you remove option[1]
from the example above, the old option[2]
('Third option') becomes option[1]
etc.
To create a new option, do:
document.forms['testform'].testselect.options[i] = new Option('new text','new value');
where new text is the text the user sees and new value is the VALUE of the new option, the bit that's sent to the server when the form is submitted. Of course the new option overwrites the old one.
To completely clear a select box, do
document.forms['testform'].testselect.options.length = 0;
Object detection
<OPTION>Your browser can't handle this script</OPTION>
As to this cryptic option in the example above, it is for object detection.
This is more difficult than usual because the option object itself is supported by all browsers. What we want to know here is if we can add or remove option objects. The trick is to put one extra option in one select box. A script called onLoad
tries to remove this option. If, after that, the option's still there the browser has failed its support detect.
This script performs the detect and gives a variable optionTest
. If it's false the browser can't handle dynamic options and you should not execute the scripts.
function init() { optionTest = true; lgth = document.forms['testform'].testselect.options.length - 1; document.forms['testform'].testselect.options[lgth] = null; if (document.forms['testform'].testselect.options[lgth]) optionTest = false; } <BODY onLoad="init()">
If you select the place of the test option wisely, the text Your browser can't handle this script informs people with old browsers that they can't use this select box script, while users with modern browsers never see the option since it's removed quickly.
You can also place one in the option if you don't want any text.
Example
Try the example below. The options in the second box are links.html css javascript
EvoltCSS1 Mastergrid
One of the strange things I discovered is that the target select box (the second one) must have a SIZE of more than 1, or else Netscape and Explorer each develop their own bugs.
The script
var store = new Array(); store[0] = new Array( 'HTML Compendium', 'http://www.htmlcompendium.org', 'Web Designer\'s Forum', 'http://www.wdf.net'); store[1] = new Array( 'Web Designer\'s Forum', 'http://www.wdf.net', 'CSS1 Mastergrid', 'http://webreview.com/wr/pub/guides/style/mastergrid.html'); store[2] = new Array( 'Stefan Koch\'s JavaScript Tutorial', 'http://rummelplatz.uni-mannheim.de/~skoch/js/tutorial.htm', 'Client Side JavaScript Reference', 'http://developer.netscape.com/docs/manuals/js/client/jsref/index.htm', 'Web Designer\'s Forum', 'http://www.wdf.net'); function init() { optionTest = true; lgth = document.forms[0].second.options.length - 1; document.forms[0].second.options[lgth] = null; if (document.forms[0].second.options[lgth]) optionTest = false; } function populate() { if (!optionTest) return; var box = document.forms[0].first; var number = box.options[box.selectedIndex].value; if (!number) return; var list = store[number]; var box2 = document.forms[0].second; box2.options.length = 0; for(i=0;i<list.length;i+=2) { box2.options[i/2] = new Option(list[i],list[i+1]); } }
init()
is called onLoad, as explained above.
This select box triggers the changing of the other one:
<select size=4 name="first" width=200 onchange="populate()"> <option value="0">html</option> <option value="1">css</option> <option value="2">javascript</option> </select>
Explanation
First of all, create some arrays that hold the options. Options are stored in name/value pairs.
var store = new Array(); store[0] = new Array( 'HTML Compendium','http://www.htmlcompendium.org', etc.
Please note that the number of the array corresponds with the value of the option: HTML has value 0 and if it's selected it writes store[0]
into the second select box.
Then for the actual script. First check if optionTest
is false
, if so the script is not executed.
function populate() { if (!optionTest) return;
Get the value of the selected option. This should be a number.
var box = document.forms[0].first; var number = box.options[box.selectedIndex].value;
If for some reason it doesn't exist, end the function. This gives you the freedom to put empty options in the select boxes (like -- Select a category --).
if (!number) return;
Get the correct option list store[number]
and put it in list[]
. Then access the second select box.
var list = store[number]; var box2 = document.forms[0].second;
Clear the second select box.
box2.options.length = 0;
Finally, go through the correct list of name/value pairs and make each of them a new option in the second select box.
for(i=0;i<list.length;i+=2) { box2.options[i/2] = new Option(list[i],list[i+1]); } }
Explorer 5.0 problems
When it comes to dynamically generating options and selects, Explorer 5.0 on Windows has quite a few problems:
- Generating options in another frame or window doesn't work. Put the script in the page that contains the select. I have heard, but did not test, that this problem still exists in Explorer 6.0
- Generating selects and options through the 'pure' W3C DOM (ie. with any
document.createElement()
) crashes Explorer 5.0 . Solved in 5.5
Generate these selects and options throughinnerHTML
instead. - Generating options from a popup window may crash any Explorer Windows.
I have heard, but did not test, that the script below works fine in IE 5.0:
var doc = select.ownerDocument; if (!doc) doc = select.document; var opt = doc.createElement('OPTION'); opt.value = value; opt.text = text; select.options.add(opt, index);
发表评论
-
JS 中的 style.width
2009-09-01 17:59 3425JS 中的 style.width 2009-08-28 1 ... -
js截取固定长度的中英文字符
2008-11-26 14:16 6287js虽然提供了计算字符串所占字节数的函数,但是却不能正确计算汉 ... -
JavaScript中的escape() 函数
2008-11-26 13:51 2040<script type="text/jav ... -
js option删除代码集合
2008-11-25 13:52 2295javascript删除option选项的多种方法,方便大家选 ... -
移动(增加删除)option
2008-11-25 13:33 1135PHP代码: <!DOCTYPE html ... -
HTML中meta标签用法详解
2008-10-08 13:04 1924meta是html语言head区的一 ... -
网页中多媒体的播放代码大全
2008-10-08 12:55 1927<embed src="在此替 ... -
播放器代码大全
2008-10-08 12:54 22291.avi格式 <object id="vi ... -
DIV边框代码
2008-10-08 11:55 22015立体线框代码稍加润色后的效果: <div style ... -
div+css实现圆角边框
2008-10-08 11:53 2629div+css实现圆角边框,在网络上查看了一下,很多都是实现圆 ... -
JS常用语句
2008-10-08 11:26 14361.document.write( " " ... -
怎样使可编辑的DIV固定大小,当内容多时,就自动出现滚动条
2008-10-08 10:59 6909方法一 <style type="text/c ... -
div 让文字或图片居中
2008-10-08 10:52 4244在div 中让 文字或图片居中,请参考以下代码1: - - - ... -
setInterval("",1000) 和setTimeout(,3000);的使用
2008-10-08 10:50 3103应用代码一: <html xmlns=" ... -
js函数window.open()的使用
2008-10-08 09:22 3757在javascript中,有一个函数 window.open( ... -
40种网页常用小技巧(JavaScript)
2008-10-08 09:12 16551. oncontextmenu="wi ... -
根据判断浏览器类型屏幕分辨率自动调用不同CSS的代码
2008-10-07 18:07 2604既判断浏览器,也判断 ... -
JS 判断浏览器类型(是否使用IE,Firefox,Opera浏览器)
2008-10-07 17:59 12495关键字:JS 判断浏览器(是否使用IE,Firefox ... -
js判断浏览器类型
2008-10-07 17:56 2354function btnlogin(){ if(nav ... -
navigator.userAgent.indexOf来判断浏览器类型
2008-10-07 17:43 11928<script language="Jav ...
相关推荐
JAVASCRIPT 实现OPTION的事件触发
在JavaScript(JS)编程中,动态添加Select中的Option元素值是一项常见的需求,特别是在网页交互或者数据填充时。这里我们将深入探讨如何实现这个功能,并提供一个实际的案例来演示这一过程。 首先,我们要理解HTML...
用js操作select的option,可以增加删除和判断value值是否在下拉列表存在
在JavaScript编程中,动态生成`select`元素中的`option`是一项常见的需求,特别是在网页交互或者数据展示时。本文将深入探讨如何使用JavaScript实现这一功能,同时结合提供的`autoSelect.html`和`autoselect.txt`...
Javascript操作Select和Option 一个网页 挺全的
### JavaScript 操作 Select 和 Option 的方法详解 在网页开发中,`<select>` 元素是一种常见的表单控件,用于收集用户输入的选择项。它通常包含多个 `<option>` 子元素供用户选择。通过 JavaScript,我们可以实现...
1.动态创建select 代码如下: ...添加选项option 代码如下: function addOption(){ //根据id查找对象, var obj=document.getElementById(‘mySelect’); //添加一个选项 obj.add(new Option(“文本”,”值”)); /
在JavaScript编程中,`select`元素和`option`标签是创建下拉列表的重要部分。`select`用于定义一个选择框,而`option`则用于在选择框中添加可选项。在网页交互中,用户通常会使用这样的下拉列表来从预设的选项中做出...
然而,原生的`<option>`元素并不支持直接添加图片,但通过一些JavaScript和CSS的技巧,我们可以实现自定义带有图片的`<option>`效果。以下是一个关于如何在`<select>`和`<option>`中添加自定义图片的详细教程。 ...
简单的例子,点击按钮就删除掉option,也可以通过jquery加载的时候进行删除。
javascript 获取select ->option中id、value、label属性及<option></option>中内容
Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option Option ...
`option`属性和与之相关的JS事件在不同浏览器之间可能存在差异,这些差异主要体现在事件处理、行为表现和兼容性上。了解并处理这些差异对于确保网页在各种浏览器上的正常运行至关重要。 1. **事件绑定差异** 在...
### JavaScript Select Option 操作详解 #### 一、检测是否有选中项 在处理表单时,经常需要检测用户是否已选择了某个 `<select>` 元素中的 `<option>` 项。以下是一个简单的示例来实现这一功能: ```javascript ...
本文档汇总了一系列关于如何使用jQuery来操作`<select>`元素及其`<option>`子元素的方法,旨在为前端开发者提供一个实用的参考指南。 #### 二、遍历和操作 `<option>` 元素 **1. 遍历并移除特定 `<option>`:** ```...
$("<option value='1'>1111</option><option value='2'>2222</option>").appendTo("#sel"); ``` 使用jQuery可以方便地创建并添加新的`<option>`元素到下拉列表中。 2. **清空下拉列表的所有选项**: ```...
- 示例中提到当option元素没有value属性时(如<option>cc</option>),使用.val()方法获取的是option内的文本值,而不是value属性的值。这是因为.val()方法在没有指定value的情况下,返回的是被选中的option元素的...
本文将详细介绍如何使用JavaScript将指定的`<option>`设置为默认选中。 首先,我们需要了解`<select>`和`<option>`的基本用法。`<select>`元素包含一个或多个`<option>`,用户可以在这些选项中进行选择。例如: ``...
在数据库管理领域,尤其是SQL语言的应用中,"WITH CHECK OPTION"是一个重要的概念,它主要用于视图的定义中,以限制通过视图进行的数据修改操作。本文将深入探讨WITH CHECK OPTION的用法及其背后的原理,帮助读者更...
在JavaScript的世界里,jQuery库以其简洁的API和强大的功能深受开发者喜爱。本篇文章将深入探讨“jquery动态添加option”这一主题,它涉及到如何在HTML的下拉选择框(`<select>`元素)中动态地添加选项(`<option>`...