Skip to content

Instantly share code, notes, and snippets.

@sugarHoge
Created August 18, 2013 06:40
Show Gist options
  • Save sugarHoge/6260241 to your computer and use it in GitHub Desktop.
Save sugarHoge/6260241 to your computer and use it in GitHub Desktop.
hrefの#を除外して画面遷移のパラメータとする
<SCRIPT type="text/javascript">
$(document).ready(function(){
$('.ttl a[href*=#]').click(function() {
var anc = $(this).attr('href');
var myRe = /\d/;
anc = myRe.exec(anc);
alert("{{$baseUrl}}/コントローラー/アクション/パラメータキー/" + anc + "/");
});
});
</SCRIPT>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment