エクスパンダプラグインの詳細を見ずに、最近自分のサイトの1つで使用したソリューションを次に示します。うまくいけば、使用しているエキスパンダープラグインで動作するようにカスタマイズできます。私は可変構文解析の功績を認めることができません。これは他の場所で発生したものです。
リンクは次のように設定する必要があります。
http://jjnursingnotes.com/NOV12?section=01
次に、JavaScript:
<script type="text/javascript">
// Redirect to Appropriate Section
var urlParams = {};
(function () {
var match,
pl = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g,
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
query = window.location.search.substring(1);
while (match = search.exec(query))
urlParams[decode(match[1])] = decode(match[2]);
})();
$(document).ready( function(){
if ( urlParams['section'] != '' ) {
// urlParams['section'] variable = the ?section=XXX part of URL
// Here is where you would need integration with expanding box
// Assuming you use something like <div class="expander" id="sect01">
// as your expander, something to this effect ought to work:
$("#sect" + urlParams['section'] ).find(".read-more a").click();
// Position document at start of anchor
$('body,html').animate({ scrollTop: $("#sect" + urlParams['section'] ).offset().top }, 500 );
}
});
</script>