A batch of controls assigned to the page Js_javascript tips

Source: Internet
Author: User
Copy code code as follows:

function Setformvalue (column,values)
{
var elem;
for (Var m=0;m<column.length;m++)
{
var tempvalue=column[m];
Elem=null;
Elem=document.getelementbyid (Tempvalue);
if (elem==null)
{
//if no corresponding control is present, skip this cycle
continue;
}

var truevalue=eval ("values.") Rows[0]. " +tempvalue);

if (truevalue== ' | | truevalue== ' null ' | | Truevalue==null)
{
//If the current value is empty, skip this cycle
continue;
}
if (elem.tagname== ' SELECT ')
{
//select control handles additionally
for (var j=0;j <elem.length;j++)
{

if (Truevalue==elem.options[j].value)
{
///find the corresponding element to select
Elem.options[j].selected=true;
//And make it not selectable
Elem.disabled=true;
//exit loop
break;
}
}
}
Else if (elem.tagname== ' INPUT ')
{
Elem.value=truevalue;
Elem.readonly=true;
}
}
}

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.