이미 추천 한 글 알터창 대신 추천 할때와 같이 메새지만 출력 하기
그누 원본은 추천을 하고 한번 더 추천 누르면
이미 추천 하신 글 입니다.
알터창이 뜹니다.
알터창 대신 추천 할때와 같이 메세지만 보여주기입니다.
사용하는 view.skin.php 하단 추천 스크립트 수정
[code]
function excute_good(href, $el, $tx) {
$.post(
href,
{ js: "on" },
function(data) {
if(data.error) {
alert(data.error);
return false;
}
if(data.count) {
$el.find("strong").text(number_format(String(data.count)));
if($tx.attr("id").search("nogood") > -1) {
$tx.text("이 글을 비추천하셨습니다.");
$tx.fadeIn(200).delay(2500).fadeOut(200);
} else {
$tx.text("이 글을 추천하셨습니다.");
$tx.fadeIn(200).delay(2500).fadeOut(200);
}
}
}, "json"
);
}
[/code]
를 아래 와 같이 수정
[code]
function excute_good(href, $el, $tx) {
$.post(
href,
{ js: "on" },
function(data) {
if(data.error) {
$tx.text(data.error);
$tx.fadeIn(200).delay(2500).fadeOut(200);
return false;
}
if(data.count) {
$el.find("strong").text(number_format(String(data.count)));
if($tx.attr("id").search("nogood") > -1) {
$tx.text("이 글을 비추천하셨습니다.");
} else {
$tx.text("이 글을 추천하셨습니다.");
}
$tx.fadeIn(200).delay(2500).fadeOut(200);
}
}, "json"
);
}
[/code]
참고로
[code]
if(data.error) {
alert(data.error);
return false;
}
[/code]
를 아래처럼 수정 한겁니다.
[code]
if(data.error) {
$tx.text(data.error);
$tx.fadeIn(200).delay(2500).fadeOut(200);
return false;
}
[/code]
댓글 10개
수정 전: alert(data.error);
수정 후: $tx.text(data.error); $tx.fadeIn(200).delay(2500).fadeOut(200);
추천 감사합니다.
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4426 | ||
| 2364 | 1년 전 | 1637 | ||
| 2363 | 1년 전 | 2110 | ||
| 2362 |
디지털홍익인간
|
1년 전 | 1259 | |
| 2361 | 1년 전 | 2035 | ||
| 2360 |
parkee
|
1년 전 | 929 | |
| 2359 | 1년 전 | 1655 | ||
| 2358 | 2년 전 | 1380 | ||
| 2357 | 2년 전 | 2654 | ||
| 2356 | 2년 전 | 1651 | ||
| 2355 |
타버린나무
|
2년 전 | 1859 | |
| 2354 | 2년 전 | 2389 | ||
| 2353 |
swallow
|
2년 전 | 2365 | |
| 2352 | 2년 전 | 1513 | ||
| 2351 | 2년 전 | 1592 | ||
| 2350 |
|
2년 전 | 1480 | |
| 2349 | 2년 전 | 1293 | ||
| 2348 | 2년 전 | 2380 | ||
| 2347 | 2년 전 | 2497 | ||
| 2346 |
ceramoon
|
2년 전 | 1536 | |
| 2345 | 2년 전 | 1274 | ||
| 2344 | 2년 전 | 1679 | ||
| 2343 | 2년 전 | 2408 | ||
| 2342 | 2년 전 | 1645 | ||
| 2341 | 2년 전 | 1181 | ||
| 2340 | 2년 전 | 2531 | ||
| 2339 | 2년 전 | 1222 | ||
| 2338 | 2년 전 | 1402 | ||
| 2337 | 2년 전 | 1711 | ||
| 2336 | 2년 전 | 2004 | ||
| 2335 | 2년 전 | 2284 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기