gpt4 book ai didi

javascript - 未捕获的引用错误 : alertbox with value from a list

转载 作者:行者123 更新时间:2023-12-03 07:29:13 25 4
gpt4 key购买 nike

如果单击显示列表中第一个值的按钮,我会尝试收到警报。我基于此使用以下代码 threat 。在这种威胁中,他们使用的是表格而不是列表。但我认为那不是问题……我认为现在是问题了。我使用的代码是这样的。(这些功能来自 openlayer map ):

<ul id ="table_overvieuw">
<#list features as feature>
<li><b>Type: ${type.name}</b> (id: <em>${feature.fid}</em>):
<ul>
<#list feature.attributes as attribute>
<#if !attribute.isGeometry>
<li><b>${attribute.name}</b></li>
${attribute.value}
</#if>
</#list>
<br><br>
<input type="button" name="geef slijpplaten info" class="ok" value="OK" onclick="myFunction()" />
</ul>
</li>
</#list>
</ul>
<script type="text/javascript">
function highlight(e) {
if (selected[0]) selected[0].className = '';
e.target.parentNode.className = 'selected';
}

var table = document.getElementById('table_overvieuw'),
selected = table.getElementsByClassName('selected');
table.onclick = highlight;

function myFunction(){

alert($("li.selected li:first" ).html());
}

</script>

我在控制台中收到的错误是:Uncaught ReferenceError:$未定义。 $ 来自这段代码:

 alert($("li.selected li:first" ).html());

有人可以帮我吗?

最佳答案

要使用 jquery,您必须将其放在页面上。使用 CDN (http://jquery.com/download/#using-jquery-with-a-cdn)。您也可以使用 Bower 安装它(bower install jquery)并将其链接到页面上:

<html>
<head>
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
...
</head>
...
</html>

关于javascript - 未捕获的引用错误 : alertbox with value from a list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35867465/

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