0

示例代码

<div class='credit'>
Copy <a href="http://blabla.com">blabla</a>
</div>

在上面的代码中,我将添加内容和链接

$(document).ready(function(){
$('.credit').append(' credit by <a href="http://www.blabladot.com">blabladot</a>');
});

但我试过了,没有用,代码怎么正确?

4

2 回答 2

0

您忘记包含jQuery

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

在这里工作 jsFiddle。

如果您在博客模板中使用它,请检查。我建议您查看您的开发人员控制台(在 chrome 中)或 firebug(在 firefox 中)是否有任何 javascript 错误,并在问题中提及它们。

于 2012-12-25T13:52:01.053 回答
0

您需要确保在 HTML<head></head>部分中添加最新版本的 jQuery 库,如下所示:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>

此外,请确保在上述链接之后包含其他 jQuery 文件或脚本。

工作小提琴演示

于 2012-12-25T13:55:46.127 回答