$(".box").next();
$(".box").prev();
$(".box").parent();
var box = document.querySelector(".box");
box.nextElementSibling;
box.previousElementSibling;
box.parentElement;
4. 요소
// 요소 추가
$("<div/>");
$("<span/>");
document.createElement("div");
document.createElement("span");
// 요소에 텍스트 추가
var element = document.createElement("div");
element.textContent = "Text"
var text = document.createTextNode("div");
element.appendChild(text);
// 요소의 속성 수정
$(".button").text("New text");
document.querySelector(".button").textContent = "New text";
// 요소의 속성값 가져오기
$(".button").text();
document.querySelector(".button").textContent;
// 요소에 하위 요소 추가
$(".container").append($("<div/>"));
var element = document.createElement("div");
document.querySelector(".container").appendChild(element);
Database "/Users/계정명/test" not found, either pre-create it or allow remote database creation (not recommended in secure environments) [90149-200] 90149/90149
해결
1안 Save Settings를 Generic H2 (Server)로 하고 JDBC URL을 jdbc:h2:tcp://localhost/~/test 로 하고 연결을 누르라고 하길래
난 애초에 여기서 에러가 났다 그래서 더 검색해봤더니
Generic H2 (Embedded) 로 하고 jdbc:h2:~/test 로 하고 연결을 누르라고 하길래
했으나 난 또 여기서 변함없이 에러가 났다.
h2를 지웠다 깔아서 해결하신 분을 봐서 해봤으나 소용이 없는 듯 했으나 언어를 English로 바꾸고 하니까 잘 됐다