Dynamic filling of options for HTML select tag

Source: Internet
Author: User

The amd module writes select. js to help me dynamically create options and select one of them.

Example of calling code:

VaR S5 = This. select. create (); s5.bind ("S5"); s5.addoption (0, "GMT + 0"); s5.addoption (1, "GMT-8"); s5.addoption (2, "GMT + 8"); s5.choose (1 );

Select. js source code:

Define ("select", ["jquery"], function ($) {'use strict '; return {// create a selector objectcreate: function () {var innerselect = {ID: "", // using jquery slector to set the inner HTML codesbind: function (ID) {This. id = ID ;}, // Add an option which contains value and textaddoption: function (value, text) {var T, option; T = "<option value = {0 }>{ 1} </option>"; option = jquery. validator. format (T, value, text); $ ("#" + this. ID ). append (option) ;}, // select one existing optionchoose: function (value) {$ ("#" + this. ID ). val (value) ;}}; return innerselect ;}};});

If you do not need AMD, You Can slightly modify the code.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.