1
我想滾動到一個動態的ID。我正在使用以下jqueryJQuery滾動到動態ID
$('.toggle-explanation').click(function() {
var divID = '#explanation-' + $(this).attr('rel');
//var divID = '#explanation-' + $(this).attr('id');
$('html, body').animate({scrollTop: $(divID).offset().top}, {queue: false, duration: 900});
$($(this).attr('rel')).slideToggle(900);
});
-----
<a class="toggle-explanation" rel="#explanation-<?php the_ID(); ?>" href="javascript:void(0);">Explanation ></a>
我不知道爲什麼它不起作用。
在DIVID取出explanation-一部分,現在你」重新得到解釋 - 解釋phpid – thepieterdc