gpt4 book ai didi

javascript - jquery如何指定多个选择器

转载 作者:行者123 更新时间:2023-11-28 15:13:08 25 4
gpt4 key购买 nike

这是我的 html 代码:

<input type="text" id="home">
<input type"text" id="dog">

我需要做一些事情来读取这些字段中的值。所以我写了我的jquery代码:

//this code is wrong because it doesn't work
$('input[type="text"][id="home"] input[type="text"][id="dog"]')....

我如何选择这样的东西?谁能帮我吗?

最佳答案

要选择多个项目,请在它们之间使用逗号

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>

$(document).ready(function () {

$('#home, #dog').val("hello");
});
</script>
</head>

<body>

<input type="text" id="home">
<input type"text" id="dog">
</body>

</html>

关于javascript - jquery如何指定多个选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35367144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com