我正在处理一个包含数字电话目录的页面。列出了名称和编号,但我想了解有关单击名称时在弹出窗口中显示的条目的更多详细信息。不幸的是,我遇到了 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>
提前致谢!