컴터/Javascript / html (45) 썸네일형 리스트형 window.document.location http://www.mins01.com/20070305/m_board/tech.php?b_id=tech&type=read&b_idx=358&page=1&sh1_ta=b_title&sh1_str=location&period=all alert(document.location.search); 이렇게 찾는다.. 속성 예제 URL http://www.mins01.com:80/for2007/index.php?mm=2&sm=1#top hostname 접속한 서버의 호스트네임(서브도메인등이 포함된 도메인 이름 or IP) ex> www.mins01.com href 접속한 URL 주소(완변한 모양의 주소) ex> http://www.mins01.com:80/for2007/index.php?mm=2&sm=1#top hos.. 윈도우 미디어 자바스크립트제어. id.CurrentPosition : 현재 플레이 위치 id.Duration : 총 프레임(?)수 id.PlayState : 현재 플레이 상태 - 0 : 정지 - 1 : 일시정지 - 2 : 재상중 function vPlay(){////일시정지.. 플레이.. var bnt = document.getElementById("play");////버튼 아이디 var player = document.getElementById("wm_01");//플레이어 아이디 if(player.PlayState == 0 || player.PlayState == 1){//정지상태 또는 일시정지 bnt.src="/images/play_pause.gif"; player.play(); }else if(player.PlayState == .. 강제로 팝업띄우기란다.. 근데.. 어따가 써야할지.. 차라리 그냥 레이어로 하는게...ㅡㅡ; http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=55928&page=1 form 에 해당 input box 가 있는 확인 form 이름이 f 인 폼안에 pwd 라는 text input 이 있는지 찾고 알고 싶을때는 if(document.f.pwd===true){ //////같당.if(document.f.pwd){ //// alert("pwd input 없음.") }else{ alert("pwd input 있슴"); } 자바스크립트 try... catch ... finally 예제 // 입력 에리아 블럭 오류 검정을 위한 Javascript code를 넣어 보라. // 입력 텍스트에리아 결과 표시 위치 // 오류 결과 표시 위치 =================================================================================== try { for (var i=0; i 라디오, 체크박스 체크하기.. function raChecked(col, col_value){ //라디오박스 체크하기. for(var i=0;i 간단하게 콤마찍기 Number(value).toLocaleString().split(".")[0];//콤마찍기. 어디서 퍼온건데 기억이 안남... 창없이 새창띄우기.. 어디서 봤는데...ㅋㅋ 출처 생각나면 적겠습니다. phpschool.어디선가 본듯한데.. function bigImage(fileName,winName,width,height){ var scrollYes=""; (width > 1024) ? scrollYes="yes" : scrollYes="no"; var winpage=window.open("",winName,"toolbar=no,scrollbars="+scrollYes+",resizable=no,width=" + width + ",height=" + height); if(winpage != null){ var htmlcontent = "" + "" + " " + ""; winpage.document.open(); winpage.document.wri.. 이전 1 2 3 4 5 6 다음