简体   繁体   中英

Using 3rd party script in html

So actually i am not much familiar with javascript that's why i am going to post it to know something that i am going to know,

So here it is,

Suppose i have html page and hosted on some where on internet and its coding is,

<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> 

In this code Link anchor text use for hyperlink, I would like to use javascript that call from another site, where the link exist and it display over there like this.

<script type="text/javascript" src="http://mysite.com/java.js">  

I want to know that what code i put on java.js so it show the hyperlink in my html file and how and where do i add code to html page and in javascript

Advance Thanks for help :)

Apologies in advance if I misunderstood your question, but it sounds like you'd like to use JavaScript from another location on your site.

Using the example above, here's what that would look like:

<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> 

You could also link to it in the <head> instead, but it's better for performance if the scripts are placed in the footer.

your anchor: href="javascript:linksomething()" and js: function linksomething(){ window.location.href=url; } is this what you want?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM