버튼누르면 입력창에 치던글씨 글씨체 바꾸기

버튼누르면 입력창에 치던글씨 글씨체 바꾸기

QA

버튼누르면 입력창에 치던글씨 글씨체 바꾸기

답변 1

본문

옆에 있는 버튼을 누르면 input type="text" 에 있는 글자의 글씨체가

 

bold나 이탤릭체로 바꾸게 하고 싶습니다.

 


<button type="button" id="bold">BOLD</button>
<input type="text" id="maintext" />
 
$("#bold").click(function(){
??
});

 

jquery시에 저기에 뭘 넣어야할까요?

생각해본것은

message = $("#maintext").html("<b>");
$("#maintext") = message;

 

이건데..

이 질문에 댓글 쓰기 :

답변 1

$("#maintext").css("font-weight", "bold");

감사합니다. 혹시 누른걸 다시 끌때 돌아오는데
다시 킬떄 STYLE=""이 있어서 안되는데 어떡하면 좋을까요

$("#bold").click(function(){
if($("#maintext").is("[style]")){
$("#maintext").css("font-weight", "");
}else{
$("#maintext").css("font-weight", "bold");
}
});

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 56
© SIRSOFT
현재 페이지 제일 처음으로