1. ホーム
  2. javascript

[解決済み] 要素がdivかどうかチェックする

2023-06-11 19:29:02

質問

どのようにすれば $(this)div , ul または blockquote ?

例えば

if ($(this) is a div) {
  alert('its a div!');
} else {
  alert('its not a div! some other stuff');
}

どのように解決するのですか?

このようなものです。

if(this.tagName == 'DIV') {
    alert("It's a div!");
} else {
    alert("It's not a div! [some other stuff]");
}