gpt4 book ai didi

javascript - 使用 aspnetmvc Turbolinks 时如何在正文中编写 jquery

转载 作者:行者123 更新时间:2023-12-03 10:56:52 25 4
gpt4 key购买 nike

我在自己的项目中使用aspnetmvcturbolinks,但是,在body中编写的jquery api未定义。我将js文件移动到布局的头部。

$(document).on('keyup', 'input[name=keyword]', function () {
alert(this.attr("name"));
return false;
});

在上面的代码中,attr api 未定义!什么是解决方案?谢谢。

最佳答案

这是因为你必须将 this 传递给 jQuery 才能使用 jQuery 方法...

$(this).attr("name")

...否则它会查找对象并返回未定义

关于javascript - 使用 aspnetmvc Turbolinks 时如何在正文中编写 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28234519/

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