TIL 2020/05/06

코드깎는 노인·2020년 5월 6일
0

span태그에 width를 주고싶으면 display속성을 inline-block으로 주면 된다

let checkedBoxes = document.querySelectorAll("input[type=checkbox]:checked")
      .length;
let checkedBoxes =document.querySelectorAll("input[name=chkbox]:checked")
      .length;

전체 체크된 체크박스갯수출력하는 법

text-indent:10px;

들여쓰기10px

(ReactDOM.findDOMNode(this.refs.comp)).onmouseover = function () {
      (ReactDOM.findDOMNode(this.refs.comp)).style.textDecoration = 'underline';
    }.bind(this);
-----------------------------------------------------------------------
const node = ReactDOM.findDOMNode(this);

// Get child nodes
if (node instanceof HTMLElement) {
    const child = node.querySelector('.someClass');
}

ReactDom 사용법

profile
내가 볼려고 만든 블로그

0개의 댓글