我正在尝试使用jQuery附加链接,但它无效。这是我的代码。
$(document).ready(function() {
$( ".class" ).append( "<p><a href="http://www.google.com">Google</a></p>" );
});
答案 0 :(得分:10)
修正你的报价:
$(document).ready(function() {
$( ".class" ).append( "<p><a href='http://www.google.com'>Google</a></p>" );
});
答案 1 :(得分:2)
你有嵌套的双引号,这就是为什么它不起作用。这将起作用(用户外部单引号):
$(document).ready(function() {
$( ".class" ).append('<p><a href="http://www.google.com">Google</a></p>');
});