javascript (jquery ではない) を使用して、ID を持つ特定の DIV に対してのみ関数を実行する方法を知りたいです。たとえば、この div 内で ID="content" を使用して特定のテキストを検索するには、次のようにします。
ありがとう。
javascript (jquery ではない) を使用して、ID を持つ特定の DIV に対してのみ関数を実行する方法を知りたいです。たとえば、この div 内で ID="content" を使用して特定のテキストを検索するには、次のようにします。
ありがとう。
var elem = document.getElementById("content")
someFunction(elem)
someFunction(elem) {
if (elem.id != "content" || elem.tagName != "DIV")
throw new Error("wrong element");
return find(elem, text);
}
someFunction(document.getElementById("content")); // works
someFunction(document.body.firstChild); // throws error