Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- junit
- Chat GPT
- Github 등록
- docker에서 mysql 실행
- MySQL
- Android Studio
- 안드로이드 자동으로 포커싱
- AWS
- XML Opacity
- 챗지피티
- Linux 패키지 관리자
- mac 패키지 관리자
- TextView 일부분
- 팝업 바깥 레이어
- PHP Storm
- codeigniter
- nextFocusDown
- Execution failed for task ':test'.
- InvalidTestClassError
- 다음으로 이동
- php
- Github Token
- 5회 인증
- Location Permission
- git
- git cannot identify version of git executable
- 챗GPT
- 여러 개
- sourceSet
- Android Flavor
Archives
- Today
- Total
128june
[PHP Storm] canHaveHTML / canHaveChildren property 본문
JetBrain/PHP Storm & Codeigniter
[PHP Storm] canHaveHTML / canHaveChildren property
128june 2020. 6. 10. 15:56반응형
canHaveHTML 설명
- Retrieves a Boolean value that indicates whether the element can contain HTML formatted text.
HTML 형식의 택스트를 포함할 수 있는 요소를 나타내는 boolean 값을 반환한다.
특징
- canHaveHTML property가 false ▶ do not write the innerHTML property
- canHaveHTML property ≒ canHaveChildren property
- canHaveChildren property returns false ▶ canHaveHTML property return false
- some elements can have children, but cannot contain HTML formatted text. See the example below.
canHaveChildren 설명
- Retrieves a Boolean value that indicates whether the element can contain child elements.
자식 요소를 포함한 요소가 나타내는 boolean 값을 반환한다.
특징
- element can have children ▶insertBefore or appendChild methods 를 함께 추가할 수 있다.
- To check whether an element can have HTML content, use the canHaveHTML property.
반응형
'JetBrain > PHP Storm & Codeigniter' 카테고리의 다른 글
[CodeIgniter] CI 동작의 흐름 (0) | 2020.06.17 |
---|---|
[Codeigniter] 코드이그나이터 application 하위 폴더 설명 (0) | 2020.06.15 |
[PHP Storm] Form Helper ( form_open() 함수 ) (0) | 2020.06.10 |
[PHP Storm] 단축키 정리 (0) | 2020.06.10 |
[Codeigniter] 기본적인 MVC 모델 구현 (0) | 2020.06.08 |
Comments