스크립트를 글로 작성시 403 / 501 에러
function clickHandler(e) {
// ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
// See: http://jacklmoore.com/notes/click-events/
if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey)) {
e.preventDefault();
launch(this);
}
}
소스 메모를위해 위와같은 스크립트를 글쓰기에 작성시 글이 작성되지 않고 에러페이지를 띄우는데요..
원래그런건가요? ㅜ_ㅜ
Method Not Implemented
GET to /bbs/bbs/write_update.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
// ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
// See: http://jacklmoore.com/notes/click-events/
if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey)) {
e.preventDefault();
launch(this);
}
}
소스 메모를위해 위와같은 스크립트를 글쓰기에 작성시 글이 작성되지 않고 에러페이지를 띄우는데요..
원래그런건가요? ㅜ_ㅜ
Method Not Implemented
GET to /bbs/bbs/write_update.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 2개