1. form 要素が存在するかどうかを確認します (1)
Actipro CodeHighlighter (フリーウェア) によって生成されたコードの強調表示http://www.CodeHighlighter.com/-->if("periodPerMonth" in document.theForm)
{
return true ;
}
else{
return false;
2. ページ要素が存在するかどうかを判断します
if(document.getElementById("XXX"))
{
//Exists
}
3. form 要素が存在するかどうかを判断します (2)
if(document.theForm.periodPerMonth)
{
//Exists
} または
if(typeof(document.theForm.periodPerMonth) == "object")
{
//Exists
}
4. フォームかどうかを判断します。存在します
if(document.theForm )
{
//Exists
}
5. Jquery でスクリプトを作成します
if ( $("#someID").length > 0 ) {
$( "#someID").text("こんにちは");
}