학습 내용
<a onclick = "hey()">
: 클릭하면 hey라는 함수를 실행시켜라
let count = 1;
function hey() {
if (count % 2 == 0) {
alert('짝수입니다!')
} else {
alert('홀수입니다!')
}
count += 1;
// == count = count + 1;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
$('#article-url').val();
: id가 article-url인 곳을 가리키고 값 가져오기
$('#article-url').hide();
: id가 article-url인 곳을 가리키고 안 보이게 함
$('#article-url').show();
: id가 article-url인 곳을 가리키고 보이게 함
$('#article-url').css('display')
: id가 article-url인 곳을 display값을 가져옴.
보이면 block, 안 보이면 none이 표시됨. display말고 width, height 등도 가져올 수 있음
$('#btn-posting-box').text('포스팅박스 닫기')
: 태그 안에 있는 텍스트 값을 바꿀 수 있음.
input박스의 경우 .val(); 사용
let temp_html = '<button>나는 추가될 버튼이다!</button>';
$('#cards-box').append(temp_html);
: 태그 내에 동적으로 html 삽입. (위의 예시는 버튼 삽입)
let temp_html = `<div class="card">
<img class="card-img-top"
src="${img_url}"
alt="Card image cap">
<div class="card-body">
<a href="${link_url}" class="card-title">${title}</a>
<p class="card-text">${desc}</p>
<p class="card-text comment">${comment}</p>
</div>
</div>`;
$('#cards-box').append(temp_html);
: 태그 내에 동적으로 html 삽입. (위의 예시는 div 삽입)
funciton openclose() {
let status = $(#post-box).css('display');
funciton openclose() {
let status = $(#post-box).css('display');
if (status == 'block') {
$(#post-box).hide();
} else {
$(#post-box).show();
}
funciton openclose() {
let status = $(#post-box).css('display');
if (status == 'block') {
$(#post-box).hide();
$(#btn-posting-box).text('포스팅박스 열기');
} else {
$(#post-box).show();
$(#btn-posting-box).text('포스팅박스 닫기');
}