
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
이거 Txt 저게 적응이안되는건가요
function q3() {
let txt = $('#input-q3').val()
let temp_html = `<li>$(txt)</li>`
$('#names-q3').append
보고 계신 화면 전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.<script>
function q1() {
let txt = $('#input-q1').val()
if(txt ==''){
alert('빈칸입니다')
}else{
alert(txt)
}
}
function q2() {
let txt = $('#input-q2').val()
if(txt.includes('@') == true){
alert(txt.split('@')[1].split('.')[0]
)
}else{
alert('이메일이 아닙니다')
}
}
function q3() {
let txt = $('#input-q3').val()
let temp_html = `<li>$(txt)</li>`
$('#names-q3').append(temp_html)
}
첫번쨰 두번째는 되는데 세번쨰는 이름이 안들어가고 이렇게되는데 저 let txt 여기가 안먹히는거같은데..

