gpt4 book ai didi

jquery - Uncaught ReferenceError ,$ 未定义。如何修复它?

转载 作者:行者123 更新时间:2023-12-01 08:35:52 26 4
gpt4 key购买 nike

jQueryjQuery 的第一行有什么问题,它说 $ 没有定义。有人知道我做错了什么吗?

  $("#selectsmrtfldr").change(function () {
var selected_option = $('#selectsmrtfldr').val();
if (selected_option === '1') {
$('#fnivel2').attr('pk','1').hide();
}
if (selected_option != '1') {
$("#fnivel2").removeAttr('pk').show();
}
})

这是我的 HTML 代码

<div class="documentsearchform">
<form action="./" method="post">
<div class="smartfolder">
<h1>Documents</h1>
<label id="smartfoldertitel">SmartFolder:</label>
<select id="selectsmrtfldr"name='smartfolder'>
<option value="1"></option>
<?php
echo "Kies gebruiker om te verwijderen";
echo "<br />";
include('./database.php');
echo "<br />";
$query1="select * from gebruikers";
$uitvoer1=mysqli_query($connectie,$query1);
echo "<form action='./gebruikersverwijderen2.php' method='POST'>";
while($nextrecord=mysqli_fetch_array($uitvoer1))
{
echo "<option value='" .$nextrecord[0]. "'>" .$nextrecord[1]. " " .$nextrecord[2]. "</option>";
}
?>

</select>
<input id="fnivel2" hidden="hidden" />

最佳答案

该错误只能由以下三种情况之一引起:

  • 您的 JavaScript 文件未正确加载到您的页面中你的 jQuery 版本很糟糕。

  • 发生这种情况可能是因为有人编辑了核心文件,或者插件可能已覆盖 $ 变量。

  • 在页面完全加载之前,您已经运行了 JavaScript,并且如下这样,在 jQuery 完全加载之前。

关于jquery - Uncaught ReferenceError ,$ 未定义。如何修复它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55863792/

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