JavaScript Dom_3 Get element node

Source: Internet
Author: User

How do I get node elements?

The code is as follows:

<%@ page language= "java"  import= "java.util.*"  pageencoding= "GB2312"%><%string  path = request.getcontextpath (); String basepath = request.getscheme () + "://" +request.getservername () + ":" +request.getserverport () +path+ "/";%><! doctype html public  "-//w3c//dtd html 4.01 transitional//en" >


Description

<script type= "text/javascript" >window.onload = function () {var bjname = document.getElementById ("BJ"); Alert ( Bjname) var Bjid = document.getelementsbyname ("Beijing"); alert (bjid.length); var list = document.getElementsByTagName ("Li"); alert (list.length);} </script>

document.getElementById ("ID"): is a method for the entire document, which ensures that the ID is unique when using this method.

Document.getelementbyname ("Property name"): This method is used for attributes that are not defined by the element itself, such as Li without name, so use ByName (). However, IE does not support this method and should be used with caution.

<script type= "text/javascript" >window.onload = function () {var citynode = document.getElementById ("city"); var List = Citynode.getelementbytagname ("li"); alert (list.length);} </script>

Document.getelementbytagname ("TagName"): Gets all the elements that are labeled TagName, and all TagName elements are found throughout the document.


This article is from the "Love Coffee" blog, please be sure to keep this source http://4837471.blog.51cto.com/4827471/1569119

JavaScript Dom_3 Get element node

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.