Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の jQuery 行に相当する JavaScript は何ですか?
function foo(x,y){ $("form[name="+x+"] input[name="+y+"]").val(); }
新しいブラウザーをターゲットにしている場合、ほとんど同じです。
document.querySelector("form[name="+x+"] [name="+y+"]").value
そうでない場合は、でいくつかのループを使用する必要がありますdocument.getElementsByName。
document.getElementsByName
別の方法は、次を使用することdocument.formsです。
document.forms
document.forms[x][y].value