Key summary of using El Expression in JS: Use El expression in JS must use double quotation marks

Source: Internet
Author: User

The key summary of using El Expression in JS: Use El expression in JS to be sure to add double quotes

The EL expression is used in JS control, and the source code is as follows:

Java code
    1. var selected = ${requestscope.xxxxform.recordnumperpage}
This always JS error, because requestScope.xxxxForm.recordNumPerPage is null at the first time. So under the boss's guidance, simply add two quotes, the code intoJava code
    1. var selected = " ${requestscope.xxxxform.recordnumperpage} "  
OK, the function is automatically implemented.
enclose the entire function code: Java code
  1. function getselected (name) {
  2. var selects = document.getelementsbyname (name);
  3. var selected = "${requestscope.xxxxform.recordnumperpage}";
  4. if (selected = = Undefined | | selected = = Null | | selected = ="") {
  5. return false;
  6. }
  7. For (var j = 0; j < Selects.length; J + +) {
  8. For (var i = 0; i = selects[j].length; i++) {
  9. if (selects[j].options[i].value = = selected) {
  10. SELECTS[J].OPTIONS[I].SELECTD = true;
  11. }
  12. }
  13. }
  14. }

Key Summary: Use EL expression in JS must use double quotation marks

Key summary of using El Expression in JS: Use El expression in JS must use double quotation marks

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.