大家好,提前感谢您阅读本文。我有以下html代码
<div id="ImagePagination" class="Pagination">
Photo
<span id="currentPhotoCount"><#currentPhotoCount#>
</span> of
<span id="maxPhotoCount"><#maxPhotoCount#>
</span>
</div>
currentPhotoCount 和 maxPhotoCount 变量是从完美运行的 jquery 图像滑块脚本设置的,但我想获取 currentPhotoCount 的文本以便在另一个脚本中使用它。任何关于我如何实现这一目标的建议将不胜感激!!!我已经尝试过这段代码..我做错了什么吗?
var pic=parseInt($('#currentPhotoCount').text(), 10);
x = '../object_images/medium/<#OBJECT_ID#>_"'+pic+'".jpg';
$(".gallery a[rel^='prettyPhoto']").attr({src:x});
在我的头撞到墙上几个小时后,我意识到这是一个引号问题..我从 x 变量中删除了双引号,所以......
x = '../object_images/medium/<#OBJECT_ID#>_"'+pic+'".jpg';
变成
x = '../object_images/medium/<#OBJECT_ID#>_'+pic+'.jpg';
现在一切正常......非常感谢你们帮助我!