<style>


.comm_file {position:relative;background:url('btn_attachSch.png') no-repeat right center; }

.comm_file .inp_file_btn {display:block;position:absolute;top:0;right:0;width:58px;height:22px;opacity:0;filter:alpha(opacity=0); }

.comm_file .inp_file_txt {float:left; border:1px solid #bbb;background:none;}


.clfix:after{content:".";display:block;height:0px;clear:both;visibility:hidden; }

</style>




<div class="comm_file clfix" style="width:575px;">

<input type="file" id="attach" name="attach" class="inp_file_btn" onchange="document.getElementById('b_f_name_imsi').value=this.value;">

<input type="text" id="b_f_name_imsi" name="b_f_name_imsi" class="inp_file_txt" style="width:495px">

</div>

'CSS' 카테고리의 다른 글

배경이미지 투명하게  (0) 2014.09.02

mysql에서 사용자 정의 함수를 만들 때 나는 에러


1. Not allowed to return a result set from a function SQL Statement


select할 때 값을 =가 아닌 into로 넣어준다.


예를 들면


select v_id = m_id from tblMember; => select m_id into v_id from tblMember;


2. ERROR 1418: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled


create 문 실행하기전에


SET GLOBAL log_bin_trust_function_creators = 1; 


를 실행해준다.

이놈의 IE가 항상 문제다.

 

저번에 FormData를 이용하여 간단하게 ajax로 파일업로드를 했는데

 

테스트를 해보니 ie9 이하에서는 작동을 하지않는다. (부셔버릴꺼야 ㅠㅠ)

 

또 막 구글구글을 하였으나 ie는 안됨 이라는 글 밖에 안나왔는데 모처럼! 네이버검색으로 건졌다.

 

바로바로 jquery.form.js 

jquery.form.min.zip

 

(출처 :  http://malsup.com/jquery/form/#download)

 

이 플러그인으로 구현해 보니 ie7~9 뿐만아니라 크롬 다 된다.

 

게다가 이것도 별로 복잡하지 않다!

 

+ Recent posts