js 判斷一個元素是否存在
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
1. 判斷表單元素是否存在(一) if("periodPerMonth" in document.theForm) { return true; } else{ return false; } 2. 判斷頁面元素是否存在 if(document.getElementById("XXX")) { //存在 } 3. 判斷表單元素是否存在(二) if(document.theForm.periodPerMonth) { //存在 } 或 if(typeof(document.theForm.periodPerMonth)=="object") { //存在 } 4. 判斷表單是否存在 if(document.theForm) { //存在 } 5.用Jquery寫腳本 if ( $("#someID").length > 0 ) {
$("#someID").text("hi"); } 該文章在 2010/11/25 23:01:39 編輯過 |
關鍵字查詢
相關文章
正在查詢... |