使用jQuery将一些文本锚定到外部链接的最简单方法是什么?

时间:2015-03-18 10:23:04

标签: javascript jquery html

在我的HTML页面中,我使用以下内容添加了一些文本:

<script>
    $('.description').text('my description')
</script>

my description内部我需要将锚标记href放置到外部链接,如下所示:<a href="http://link_to_website.com">link to a website</a>

我怎样才能继续使用jQuery来实现这样的目标呢?

3 个答案:

答案 0 :(得分:3)

您可能需要这样做:

$('.description').text('my description').append($('<a />', {href:"http://linkofhref", text:"text goes here."}));

查看下面的演示:

$('.description').text('my description ').append($('<a />', {href:"http://linkofhref", text:"text goes here."}));
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class='description'></div>

答案 1 :(得分:1)

使用.html()

   $('.description').html('<a href="http://link_to_website.com">link to a website</a>')

$('.description').html('my description <br> <a href="http://link_to_website.com">link to a website</a>')

答案 2 :(得分:1)

试试这个..

<script>
    $(document).ready(function(){
        $('.description').html('<a href="http://link_to_website.com">link to a website</a>');
});
</script>