[js]텍스트 선택하기

클릭하면 해당 객체 안에 있는 텍스트를 선택해준다.

function selectThis(obj) {
	if (window.getSelection) {
		window.getSelection().selectAllChildren(obj);
	} else if (document.body.createTextRange) {
		var r = document.body.createTextRange();
		r.moveToElementText(obj);
		r.select();
	}
}

사용예제는...

선택안된 글 Select this! 선택되지 않은 글

끝.

댓글을 남겨주세요

This site uses Akismet to reduce spam. Learn how your comment data is processed.