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