본문 바로가기

삶과 꿈

AI로 짠 자바스크립트 코드

반응형

그저께 작업 중인 사이트에 붙여넣기(paste) 기능이 필요해서 구글링 하다가 AI한테 코드를 요청해봤다.

    navigator.clipboard.readText()
    .then(text => {
    document.querySelector(elm).value = text;
    })
    .catch(err => {
    console.error('Failed to read clipboard contents: ', err);
    });

대략 이런 코드를 짜주더라.

function setPaste(elm) {
    navigator.clipboard.readText()
    .then(text => {
    document.querySelector(elm).value = text;
    })
    .catch(err => {
    console.error('Failed to read clipboard contents: ', err);
    });
}

그대로 함수로 만들어 보니 작동된다.

 

이에 대한 소감은 차후 써볼 예정.

반응형