프로그래밍 언어/HTML,CSS,JS

jQuery를 사용하여 div의 innerHTML을 대체하는 방법

Rateye 2021. 6. 16. 10:08
728x90
반응형
질문 : jQuery를 사용하여 div의 innerHTML을 대체하는 방법은 무엇입니까?

다음을 어떻게 얻을 수 있습니까?

document.all.regTitle.innerHTML = 'Hello World'; 

regTitle 이 내 div ID 인 jQuery를 사용합니까?

답변

$("#regTitle").html("Hello World"); 
출처 : https://stackoverflow.com/questions/1309452/how-to-replace-innerhtml-of-a-div-using-jquery
728x90
반응형