JS Simple set Drop-down selection box default value method _javascript Tips

Source: Internet
Author: User

The example of this article describes the JS simple set Drop-down selection box default value method. Share to everyone for your reference, specific as follows:

Select the background corresponding record
function setselectoption (objselect, targetvalue) {
     if (objselect) {
      var options by default of the dropdown object) objselect.options;
      if (options) {
       var len = options.length;
       for (Var i=0;i<len;i++) {
        if (Options[i].value = = targetvalue) {
         options[i].defaultselected = true;
         Options[i].selected = true;
         return true;
        }
       }
      else {
       alert (' missing element (s)! ');
      }
    } else {
      alert (' missing element (s)! ')
;}

More readers interested in JavaScript-related content can view the site topics: "JavaScript Search Algorithm Skills Summary", "JavaScript traversal algorithm and Skills summary", "JavaScript data structure and algorithm skills summary", " A summary of JSON manipulation techniques in JavaScript, a summary of JavaScript switching effects and techniques, a summary of JavaScript animation effects and techniques, JavaScript errors and debugging tips, and a summary of JavaScript mathematical operational usage

I hope this article will help you with JavaScript programming.

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.