首頁  >  文章  >  web前端  >  js 判斷一個元素是否在頁面中存在_javascript技巧

js 判斷一個元素是否在頁面中存在_javascript技巧

WBOY
WBOY原創
2016-05-16 17:45:121370瀏覽
1. 判斷表單元素是否存在(一)
複製代碼 代碼如下:

Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->if("periodPerMonth" in document.theForm)
{
return true;
else{
return false;
}


2. 判斷頁面元素是否存在
複製程式碼

程式碼如下:


if(document.getElementById("XXX"))
{
//存在
}}
3. 判斷表單元素是否存在(二)
複製代碼


程式碼如下:


if(document.theForm.periodPerMonth)
{
//存在
}或
if(typeof(document.theForm.periodPerth)= ="object")
{
//存在}
4. 判斷表單是否存在







複製程式碼
程式碼如下:


if(document.theForm)
{
//存在} } > 5.用Jquery寫腳本 複製代碼 代碼如下: if ( $("#someID").length > 0 ) { $("#someID").text("hi"); }
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn