익스플로어에서만 글쓰기 버튼이 안돼요-_-;; 정보
익스플로어에서만 글쓰기 버튼이 안돼요-_-;;본문
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.
오류 주소 : http://mingsss.net/gnuboard4/bbs/board.php?bo_table=guest_of_mingsss
이건 도대체 무슨 경우 일까요... ㅠㅠ
익스플로어에서만 글쓰기 버튼이 안되는군요
사실 파이어폭스에서만 제대로 되고
사파리, 크롬에서는 두 번 클릭해야만 등록이 됩니다.
(연속 클릭했을 때 차단하는 태그를 꺼버렸어요)
이거 땜에 밤새고 있습니다 ㅠㅠ 혹시 해결책 아시는분 계시나요
오류 주소 : http://mingsss.net/gnuboard4/bbs/board.php?bo_table=guest_of_mingsss
이건 도대체 무슨 경우 일까요... ㅠㅠ
익스플로어에서만 글쓰기 버튼이 안되는군요
사실 파이어폭스에서만 제대로 되고
사파리, 크롬에서는 두 번 클릭해야만 등록이 됩니다.
(연속 클릭했을 때 차단하는 태그를 꺼버렸어요)
이거 땜에 밤새고 있습니다 ㅠㅠ 혹시 해결책 아시는분 계시나요
댓글 전체
전송부분부터 소스입니다 -_ㅜ
살려주세요 ㅠㅠ 흑흑
<td colspan="2" align="left" valign="bottom" style="padding:10px 0px 0px 70px;">
<input type="image" id="btn_submit" accesskey='s' src="<?=$board_skin_path?>/img/ok_btn.gif" border="0" /> <a href="./board.php?bo_table=<?=$bo_table?>"><img id="btn_list" src="<?=$board_skin_path?>/img/list_btn.gif" border="0" /></a></td>
</tr>
</table>
</td> </tr>
</form>
</table>
<script language="javascript">
<?
// 관리자라면 분류 선택에 '공지' 옵션을 추가함
if ($is_admin)
{
echo "
if (typeof(document.fwrite.ca_name) != 'undefined')
{
document.fwrite.ca_name.options.length += 1;
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].value = '공지';
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].text = '공지';
}";
}
?>
with (document.fwrite) {
if (typeof(wr_name) != "undefined")
wr_name.focus();
else if (typeof(wr_subject) != "undefined")
wr_subject.focus();
else if (typeof(wr_content) != "undefined")
wr_content.focus();
if (typeof(ca_name) != "undefined")
if (w.value == "u")
ca_name.value = "<?=$write[ca_name]?>";
}
function html_auto_br(obj) {
if (obj.checked) {
result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");
if (result)
obj.value = "html2";
else
obj.value = "html1";
}
else
obj.value = "";
}
function fwrite_check(f) {
/*
var s = "";
if (s = word_filter_check(f.wr_subject.value)) {
alert("제목에 금지단어('"+s+"')가 포함되어있습니다");
return;
}
if (s = word_filter_check(f.wr_content.value)) {
alert("내용에 금지단어('"+s+"')가 포함되어있습니다");
return;
}
*/
if (document.getElementById('char_count')) {
if (char_min > 0 || char_max > 0) {
var cnt = parseInt(document.getElementById('char_count').innerHTML);
if (char_min > 0 && char_min > cnt) {
alert("내용은 "+char_min+"글자 이상 쓰셔야 합니다.");
return;
}
else if (char_max > 0 && char_max < cnt) {
alert("내용은 "+char_max+"글자 이하로 쓰셔야 합니다.");
return;
}
}
}
if (typeof(f.wr_key) != "undefined") {
if (hex_md5(f.wr_key.value) != md5_norobot_key) {
alert("자동등록방지용 글자가 순서대로 입력되지 않았습니다.");
f.wr_key.focus();
return;
}
}
var geditor_status = document.getElementById("geditor_wr_content_geditor_status");
if (geditor_status != null)
{
if (geditor_status.value == "TEXT") {
f.html.value = "html2";
}
else if (geditor_status.value == "WYSIWYG") {
f.html.value = "html1";
}
}
// document.getElementById('btn_submit').disabled = true;
document.getElementById('btn_list').disabled = true;
<?
// if ($g4[https_url])
// echo "f.action = '$g4[https_url]/$g4[bbs]/write_update.php';";
// else
echo "f.action = './write_update.php';";
?>
f.submit();
}
</script>
살려주세요 ㅠㅠ 흑흑
<td colspan="2" align="left" valign="bottom" style="padding:10px 0px 0px 70px;">
<input type="image" id="btn_submit" accesskey='s' src="<?=$board_skin_path?>/img/ok_btn.gif" border="0" /> <a href="./board.php?bo_table=<?=$bo_table?>"><img id="btn_list" src="<?=$board_skin_path?>/img/list_btn.gif" border="0" /></a></td>
</tr>
</table>
</td> </tr>
</form>
</table>
<script language="javascript">
<?
// 관리자라면 분류 선택에 '공지' 옵션을 추가함
if ($is_admin)
{
echo "
if (typeof(document.fwrite.ca_name) != 'undefined')
{
document.fwrite.ca_name.options.length += 1;
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].value = '공지';
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].text = '공지';
}";
}
?>
with (document.fwrite) {
if (typeof(wr_name) != "undefined")
wr_name.focus();
else if (typeof(wr_subject) != "undefined")
wr_subject.focus();
else if (typeof(wr_content) != "undefined")
wr_content.focus();
if (typeof(ca_name) != "undefined")
if (w.value == "u")
ca_name.value = "<?=$write[ca_name]?>";
}
function html_auto_br(obj) {
if (obj.checked) {
result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");
if (result)
obj.value = "html2";
else
obj.value = "html1";
}
else
obj.value = "";
}
function fwrite_check(f) {
/*
var s = "";
if (s = word_filter_check(f.wr_subject.value)) {
alert("제목에 금지단어('"+s+"')가 포함되어있습니다");
return;
}
if (s = word_filter_check(f.wr_content.value)) {
alert("내용에 금지단어('"+s+"')가 포함되어있습니다");
return;
}
*/
if (document.getElementById('char_count')) {
if (char_min > 0 || char_max > 0) {
var cnt = parseInt(document.getElementById('char_count').innerHTML);
if (char_min > 0 && char_min > cnt) {
alert("내용은 "+char_min+"글자 이상 쓰셔야 합니다.");
return;
}
else if (char_max > 0 && char_max < cnt) {
alert("내용은 "+char_max+"글자 이하로 쓰셔야 합니다.");
return;
}
}
}
if (typeof(f.wr_key) != "undefined") {
if (hex_md5(f.wr_key.value) != md5_norobot_key) {
alert("자동등록방지용 글자가 순서대로 입력되지 않았습니다.");
f.wr_key.focus();
return;
}
}
var geditor_status = document.getElementById("geditor_wr_content_geditor_status");
if (geditor_status != null)
{
if (geditor_status.value == "TEXT") {
f.html.value = "html2";
}
else if (geditor_status.value == "WYSIWYG") {
f.html.value = "html1";
}
}
// document.getElementById('btn_submit').disabled = true;
document.getElementById('btn_list').disabled = true;
<?
// if ($g4[https_url])
// echo "f.action = '$g4[https_url]/$g4[bbs]/write_update.php';";
// else
echo "f.action = './write_update.php';";
?>
f.submit();
}
</script>