How to determine whether the image is loaded and obtain the Image Width by JS

Source: Internet
Author: User

Web students often encounter situations where customers upload images to break through the webpage content area. The following describes how to use js to solve this problem, the specific idea is to process the width or height of the Image right after js judges that the Image on the client has been downloaded. js processes the Image mainly by using the Image object in js, the onload event and onreadystatechange are used to determine whether to perform the operation.

(1) method 1, through the onload event, for example:

Copy codeThe Code is as follows:
<Script type = "text/javascript">
Var obj = new Image ();
Obj. src = "http://www.bkjia.com/uploads/allimg/131017/0Z1133F4-0.jpg ";
Obj. onload = function (){
Alert ('image width: '+ obj. width +'; Image height: '+ obj. height );
Document. getElementById ("mypic"). innnerHTML = " ";
}
</Script>
<Div id = "mypic"> onloading ...... </Div>

(2) Method 2: onreadystatechange

Copy codeThe Code is as follows:
<Script type = "text/javascript">
Var obj = new Image ();
Obj. src = "http://www.bkjia.com/uploads/allimg/131017/0Z1133F4-0.jpg ";
Obj. onreadystatechange = function (){
If (this. readyState = "complete "){
Alert ('image width: '+ obj. width +'; Image height: '+ obj. height );
Document. getElementById ("mypic"). innnerHTML = " ";
}
}
</Script>
<Div id = "mypic"> onloading ...... </Div>

Related Article

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.