所以实际上我对javascript并不熟悉,这就是为什么我要发布它以了解我将会知道的事情,
所以在这里,
假设我有html页面并托管在互联网上的一些地方,其编码是,
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......</p>
The <a href="http://sitelink.com">link</a> of the document ......
</body>
</html>
在此代码链接锚文本用于超链接,我想使用从其他网站调用的javascript,其中链接存在,并在那里显示如下。
<script type="text/javascript" src="http://mysite.com/java.js">
我想知道我在java.js上放了什么代码,以便在我的html文件中显示超链接以及如何以及在何处将代码添加到html页面和javascript中 < / strong>
预先感谢您的帮助:)
答案 0 :(得分:1)
如果我误解了您的问题,请提前道歉,但听起来您似乎想在您网站上的其他位置使用JavaScript。
使用上面的示例,这里的内容如下:
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......</p>
The <a href="http://sitelink.com">link</a> of the document ......
<script type="text/javascript" src="http://mysite.com/java.js"></script>
</body>
</html>
您也可以在<head>
链接到它,但如果脚本放在页脚中,效果会更好。
答案 1 :(得分:0)