作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理一个包含数字电话目录的页面。列出了名称和号码,但我想了解有关单击名称时在弹出窗口中显示的条目的更多详细信息。不幸的是,我遇到了 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/
我是一名优秀的程序员,十分优秀!