我一直在努力修复这个代码,不知道到底出了什么问题……
var tips = "<p class="adobe-reader-download">Most computers will open PDF documents automatically, but you may need to download <a title='Link to Adobe website-opens in a new window'";
tips +=" href='http://www.adobe.com/products/acrobat/readstep2.html' target='_blank'>Adobe Reader</a>.</p>";
if($("div#maincontent a[href*='.pdf']").length>0){
$("div#maincontent").children(":last-child").after(tip);发布于 2010-04-25 15:21:24
您在此处使用了双引号,此处显示为adobe-reader-download
var tips = "<p class="adobe-reader-download">试试这个:
var tips = "<p class=\"adobe-reader-download\">注意:如果对整个字符串使用单引号,则不需要转义双引号。
https://stackoverflow.com/questions/2707488
复制相似问题