Internet-Explorer – Try uploading no files in Internet Explorer, forms not submitted

I have a form with input type=file. Internet Explorer allows users to type whatever they want in the input (and Firefox will bring up the file selector). If the user enters openly Invalid name, for example:

a

and try to submit the form, Internet Explorer does not even try to submit the form.

Is there a way to let me know that this has happened, and let the user know that this is an alarm?

You should add an “onclick()” event to the submit button, which calls the JavaScript function To test your conditions and use JavaScript “warnings” to let users know that they need to enter something worthy of submission.

Check the regular expression to test it.

If you If you want users to make a decision, please use confirm().

If you just want to remind them instead of testing their value, you can use the following:

< pre>

Here are some The sample code can get the value from the JavaScript function call in onclick():



hello world< /title><br /> <SCRIPT LANGUAGE="javascript" type="text/javascript"><br /> function show_me(form_elem) {<br /> alert(form_elem.value);<br /> }<br /> </script><br /> </head><br /> <body><br /> <form method="GET" name="upload_form" action="index.html" target="_top"> <br /> <input type="file" name="file_name" size="14" maxlength="256" value=""><br /> <br><br /> <input type="submit" value ="mybutton" oncl ick="show_me(this.form.file_name)" /><br /> </form><br /> </body><br /></html></pre> </p></div> </p> <p>I have a form with input type=file. Internet Explorer allows users to type whatever they want in the input (and Firefox will bring up the file selector). If the user enters a blatantly invalid name, for example: </p> <p > </p> <pre>a</pre> <p>and try to submit the form, Internet Explorer does not even try to submit the form.</p> <p>Is there a way to let me know this Has happened, let users know that this is an alarm? </p> </p> <p>You should add an “onclick()” event to the submit button, which calls a JavaScript function to test your conditions and use JavaScript to “warn” Let users know that they need to enter something worthy of submission. </p> <p>View regular expressions for testing.</p> <p>If you want users to make a decision, use confirm(). </p> <p>If you just want to remind them instead of testing their value, you can use the following:</p> </p> <pre><input type="submit" value=" clickme" onClick="if (confirm('Really submit?')) {this.form.submit(); }"></pre> <p>Here are some sample codes that can be called from the JavaScript function in onclick() Get the value in:</p> </p> <pre><html><br /> <head><br /> <title>hello world








< br />

Leave a Comment

Your email address will not be published.