gpt4 book ai didi

javascript - 从超链接调用 Javascript 函数

转载 作者:行者123 更新时间:2023-11-30 10:29:32 24 4
gpt4 key购买 nike

我正在处理一个包含数字电话目录的页面。列出了名称和号码,但我想了解有关单击名称时在弹出窗口中显示的条目的更多详细信息。不幸的是,我遇到了 Javascript 问题。我对这种语言很陌生,但我认为我声明的函数中的代码是错误的,我传递的参数的语法不正确,或者我省略了代码的重要部分。如果您能就此问题提供任何帮助,我们将不胜感激。

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script>
Function DisplayContactDetail(contact, windowname) {
window.open(contact, windowname);
}
</script>
<title>Cigna Security & Reception Phone Directory</title>
</head>
<body>
<div class="centerelement">
<div id="indexpageheader">
CIGNA SECURITY & RECEPTION DIGITAL PHONE DIRECTORY
</div>
</div>
<table>
<th colspan=2 width="auto">
ALLIEDBARTON
</th>
<tr>
<td width="50%">
<a href="" onclick="DisplayContactDetail('cigna.com','ContactDetail')">
NEPA District Office
</a>
</td>
<td>(610) 954-8590</td>
</tr>
<tr>
<td width="50%">Post Watch</td>
<td>(800) 643-8714</td>
</tr>
</table>

提前致谢!

最佳答案

您在 onclick 属性的值中存在引用错误:

<a href="" onclick="DisplayContactDetail("http://www.cigna.com")">

应该是例如:

<a href="" onclick="DisplayContactDetail('http://www.cigna.com')">

另外Function应该是function,JS区分大小写。

关于javascript - 从超链接调用 Javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17774731/

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