if (document.getElementById("sname"))
{
alert("객체존재");
}
else
{
alert("객체없음");
}
if ($("#sname").length > 0)
{
alert("객체존재");
}
else
{
alert("객체없음");
}
if (typeof formname.sname != "undefined")
{
alert("객체존재");
}
else
{
alert("객체없음");
}
'javascript(jquery)' 카테고리의 다른 글
[javascript/jquery] json 만들기 (0) | 2021.06.30 |
---|---|
[javascript/jquery] 동적 input box 만들기 (0) | 2020.11.04 |
[javascript/jquery] ms word 만들기 (0) | 2020.06.03 |
[javascript/jquery] 듀얼모니터 팝업띄우기 (0) | 2019.06.05 |
[javascript/jquery] 토스트 팝업 (0) | 2019.04.03 |