Home > Web Front-end > JS Tutorial > Determine whether the control exists in js_javascript skills

Determine whether the control exists in js_javascript skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 18:20:41
Original
2241 people have browsed it

The script is as follows:

Copy code The code is as follows:

var cx_field = document.forms[0] .cx;
if(cx_field == null)
{
alert('Control does not exist');
return;
}

Implementation principle: It is by getting the specified space in the form, and it is true if it exists.
Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
I failed to follow the teacher’s instructions
From 1970-01-01 08:00:00
0
0
0
PHP path reference settings
From 1970-01-01 08:00:00
0
0
0
Convert html files to word
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template