gpt4 book ai didi

jquery - 简单的 jQuery : Why does this not work?

转载 作者:行者123 更新时间:2023-12-01 06:30:18 24 4
gpt4 key购买 nike

该值始终未定义(Chrome 12.0.742.112)。.get() 确实返回 HTML 输入对象,但访问值未定义。

<input id="a" value="abc" onkeyup="b()" />
<script src="jquery.js"></script>
<script>

function b() {
alert($('#a').get().value);
}

</script>

但是使用标准 JS 是可行的(.val() 也是如此):

document.getElementById('a').value      // this works
$('#a').val() // as does this

最佳答案

不带参数的

.get 返回一个数组。您可以传入 0 来获取第一个元素。

使用

alert($('#a').get(0).value);

关于jquery - 简单的 jQuery : Why does this not work?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6677087/

24 4 0
文章推荐: jquery - 使用 hasClass() 检查文档中的
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com