사용자:Hsl0/연구소/2.js: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
imported>Hsl0
편집 요약 없음
imported>Hsl0
편집 요약 없음
1번째 줄: 1번째 줄:
/** [[틀:뒤로]], [[틀:새로고침]], [[틀:앞으로]]에서 사용하는 방문기록 이동 함수
/**
* [[틀:뒤로]], [[틀:새로고침]], [[틀:앞으로]]에서 사용하는 방문기록 이동 함수
  * class="historygo" data-page="(이동 위치)"
  * class="historygo" data-page="(이동 위치)"
  * 작성자: [[사용자:Gustmd7410|Gustmd7410]] */
  * 작성자: [[사용자:hsl0|hsl0]]
**/


$(function historygo() {
$(function historygo() {

2020년 12월 31일 (목) 00:42 판

/**
 * [[틀:뒤로]], [[틀:새로고침]], [[틀:앞으로]]에서 사용하는 방문기록 이동 함수
 * class="historygo" data-page="(이동 위치)"
 * 작성자: [[사용자:hsl0|hsl0]]
**/

$(function historygo() {
	$('.historygo').wrap('<a />').click(function() {
	    history.go(this.dataset.page);
	});
});