Label로 묶어 주면 check button이 아니라 글자를 눌러도 check button 누르는 것 처럼 된다. <label><input type=’checkbox’ id=’check_all’ class=’input_check’ /> <b>Check me</b></label> Checke…
- Category Archives javascript
-
-
[펌]45 Useful JavaScript Tips, Tricks and Best Practices
http://modernweb.com/2013/12/23/45-useful-javascript-tips-tricks-and-best-practices/ 45 Useful JavaScript Tips, Tricks and Best Practices By Saad Mousliki As you know, JavaScript is the number…
-
[펌][AngularJS] 배우는 방법 & 기본 개념 잡기
http://mobicon.tistory.com/281 AngularJS/Concept AngularJS를 배우기 위해 좌충우돌 하며 읽고, 보고, 듣고, 코딩해본 코스를 나름 정리해 보았다. 1. 개념잡기 – Angular’s father인 미스코님의 AngularJS 소개 동영상을 본다 : 단계별로 jQuery와 잘 비교하고 있다…
-
크롬에서 창 닫기
크롬에서는 window.close(); 가 안먹힙니다.. 아래 코드는 IE , 크롬..먹히는것 확인했습니다. 아마 다른 브라우저도 되지 않나싶습니다. ? 1 window.open(”,’_self’).close();
-
JQuery Ajax 통신과 Spring 인수 처리 방법
JQuery의 Ajax통신을 하면 하기와 같이 보낸다. $.ajax({ type:”POST”, url:’http://localhost:8180/GisProject/MainService’, data:{mydata:JSON.stringify(params)}, datatype:”json”, success:function(msg){ console.log(msg);…
-
javascript ==, ===의 의미
0==false// true 0===false// false, because they are of a different type 1==”1″// true, auto type coercion 1===”1″// false, because they are of a different type
-
자바스크립트의 오류를 지적해줍니다
자바스크립트의 오류를 지적해줍니다 <Script> function View() { var sr = fo.editor.value; var tr = fo.edi.value; id=window.open(”,”,’width=300,height=200′) id.document.write(tr+sr+'<bod…
-
투명 레이어 공지창
투명 레이어 공지창 <html> <head> <style type=”text/css”> #demo {position:absolute; top:100; left:350; width:200; height:100; border:solid 2 gray; background:black; overflow:hidde…
-
폼에 몇자까지 입력가능한지 표시
폼에 몇자까지 입력가능한지 표시 <head> < script type=”text/javascript”> <!– function getObject(obj) { var theObj; if(document.all) { if(typeof obj==”string”) { return do…
-
프레임 소스보기 막기
프레임 소스보기 막기 <script language=”JavaScript”> if(parent.frames.length <= 0) { top.location.href=”http://tagin.net“; } < /script> 프레임을 쓰는 홈페이지에서 프레임 페이지가 아닌 하위 프레임으로…