Skip to content

kenu/bsNode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bs5

JavaScript lib for DOM, CORE, utility and so on

시작하기

  1. 문서의 아무 곳이나 스크립트태그를 통해 bs를 삽입합니다.
<script src="https://projectbs.github.io/bsJS/bs5.js"></script>
  1. 삽입한 이 후에는 다음과 같은 형식으로 bs를 사용합니다.
<script>
bs( function(){
	// 여기에 소스
} );
</script>
  1. 간단히 dom을 생성하고 스타일과 내용, 이벤트 리스너를 일시에 지정해 봅니다.
<script>
bs( function(){
	bs.dom( '<div></div>' ).$( 
		'<', 'body', // 부모를 body로
		'html', '안녕', // html을 넣어준다
		'width', 300, // 스타일을 지정한다.
		'click', function( $e ){alert(1);} // 이벤트를 지정한다.
	);
} );
</script>

Documents

Wiki

bsJS Wiki

APIs

License

Dual licensed under the MIT or GPL Version 2 licenses.
It is supported by the BSIDESOFT(https://www.bsidesoft.com).

Contact us

Copyright 2013.10 projectBS committee.

Releases

No releases published

Packages

No packages published