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

Determine whether the control exists in js_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:20:412169browse

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.
Statement:
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