Javascript (Client/Server) _ javascript skills

Source: Internet
Author: User
This article describes how to use Javascript to determine whether a file exists on the client, server, or remote file. The sample code is as follows, for more information about how to use javascript to determine whether a file exists, see.

1. You can use

Var fso, s = filespec; // filespec = "C:/path/myfile.txt" fso = new ActiveXObject ("Scripting. fileSystemObject "); if (fso. fileExists (filespec) s + = "exists. "; else // www. jb51.nets + = "doesn't exist. "; alert (s );

2. You can use

Var xmlhttp = new ActiveXObject ("Microsoft. XMLHTTP "); xmlhttp. open ("GET", yourFileURL, false); xmlhttp. send (); if (xmlhttp. readyState = 4) {if (xmlhttp. status = 200) s + = "exists. "; // The url contains else if (xmlhttp. status = 404) s + = "doesn't exist. "; // The url does not exist in else s + =" "; // other statuses} // www. yuju100.comalert (s );

YesSetting contentEditable to false limits that users can only select files, rather than entering files at will.

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.