본문 바로가기
Blog/책

2012.03.study html

by NAMP 2012. 3. 30.

   

  • 웹브라우저에 리스트박스를 보여주고 싶다.

http://www.tizag.com/htmlT/htmlselect.php

HTML Code:

<select size="3">
<option>California -- CA</option>
<option>Colorado -- CO</option>
<option>Connecticut -- CN</option>
</select>

   

  • 테이블 줄 합쳐서 보여주기

http://dsk114.com.ne.kr/html/row_col.html

<tr>

<td rowspan=2>학 교</td>

<td>행신중 </td>

<td>신능중</td>

<td>가람중</td>

</tr>

  

  

<tr>

<td colspan=4 align=center>운영체제</td>

</tr>

  

   

  • iBatis 에서 한글이 깨진다면

SQL 이 있는 xml 파일에서 encoding 을 EUC-KR 로 변경한다.

   

  • 래리와 세르게이는 기술을 이용해 문제를 해결하고 싶어서 구글을 창업했다.

   

  • html 에 버튼 삽입하기

Example

A button is marked up as follows:

<button type="button">Click Me!</button>

src

<tr>

<td /><td /><td />

<td>

<button type="button">Click Me for Insert!</button>                                

</td>

<td>

<button type="button">Click Me for Delete!</button>                                

</td>

</tr>

   

  

   

  • html 버튼을 클릭하면?

<INPUT TYPE=BUTTON OnClick="Circle_calc(this.form);" VALUE="calculate">

   

  • jsp Bean 에서 한글 처리

public class JuminNumber {
        private String name = null;
        private String jumin_no1 = null;
        private String jumin_no2 = null;
        
        public void JuminNumber() {}
        public void setName(String
str) {
        try {
                name = new String(str.getBytes("8859_1"),"euc-kr");
        } catch(java.io.UnsupportedEncodingException uee) {}
        }

   

  • iBatis 프로시저 호출

   

  • 오라클 ELSE IF 는 없다. ELSIF 가 있을 뿐.

       

  • [JavaScript] select의 선택된 option의 value, text 가져오기

var select = document.getElementById("select_id");

var option_value = select.options[select.selectedIndex].value;

var option_text   = select.options[select.selectedIndex].text;

   

  • javascript onload

<script type="text/javascript">

//<![CDATA[

function msg()

{

    alert("Message");

}

window.onload=msg

//]]>

</script>

   

댓글