在我的HTML页面中,我使用以下内容添加了一些文本:
<script>
$('.description').text('my description')
</script>
在my description
内部我需要将锚标记href放置到外部链接,如下所示:<a href="http://link_to_website.com">link to a website</a>
我怎样才能继续使用jQuery来实现这样的目标呢?
答案 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>