我正在使用 jquery 将 div 转换为链接。为了使链接正常工作,我需要取回每章的 story_id 和 chapter_id,但是当我这样做时,我只取回第一个 chapter_id ......所以所有的链接都是一样的。我在做场景吗?
我的 jquery 看起来像这样的故事块。
$('.storyInnerBlock').click(function(){
var story_id = $('.story_id').val();
var chapter_id = $('.chapter_id').val();
$ (location). attr ('href', 'http://www.writeyourfiction.com/index.php/story/readStory/'+story_id+'/'+chapter_id);
});
我设置了一个小提琴来显示发生了什么。
http://jsfiddle.net/zazvorniki/vwnCb/6/
任何帮助将非常感激!:)