gpt4 book ai didi

javascript - 无法在 Wordpress 中访问 jQuery 函数

转载 作者:行者123 更新时间:2023-11-28 16:21:24 25 4
gpt4 key购买 nike

为什么我会收到 ReferenceError:

manualEntry is not defined error,

在 Wordpress 中使用以下内容时?

<a href="#" onclick="manualEntry()">hide</a>
<script>
jQuery(document).ready(function ($) {
function manualEntry() {
$("#details").hide();
}
});
</script>

最佳答案

<a class="my_class" href="#">hide</a>

<script>
var $ = jQuery.noConflict();
$(document).ready(function () {
$( ".my_class" ).click(function( event ) {
event.preventDefault();
$("#details").hide();
});
});
</script>

关于javascript - 无法在 Wordpress 中访问 jQuery 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36765933/

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