0

所以实际上我对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

提前感谢您的帮助:)

4

2 回答 2

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>改为链接到它,但如果将脚本放在页脚中,则性能会更好。

于 2013-08-12T03:26:25.337 回答
0

你的锚:href="javascript:linksomething()" 和 js:function linksomething(){ window.location.href=url; } 这是你想要的吗?

于 2013-08-12T03:46:01.780 回答