๊ตฌ๊ธ ๋ธ๋ก๊ทธ ๋ธ๋ก๊ฑฐ Blogger ๊ธ ์์ ๋จ์ถํค ์ฝ๋
2023. 7. 3. 21:16ใํฐ์คํ ๋ฆฌ
๊ตฌ๊ธ ๋ธ๋ก๊ทธ
๊ด๋ฆฌ ํ์ด์ง > ํ
๋ง > HTML ํธ์ง์์
<head> ํญ๋ชฉ ๋ฐ์
๋ค์ ์ฝ๋๋ฅผ ๋ฃ์ผ๋ฉด
ํค๋ณด๋ ๋จ์ถํค๋ฅผ ๋๋ฌ
ํฌ์คํธ๋ฅผ ๋ฐ๋ก ์์ ํ ์ ์๋ค
๊ทธ ์ ์ ์ฐ์ ์์ ์ ๋ธ๋ก๊ฑฐ ID๋ฅผ ํ์ธํ์
โถ https://www.blogger.com/blog/posts/๋ด ๋ธ๋ก๊ทธ ID
๊ด๋ฆฌ ํ์ด์ง ์ฃผ์์ ๋์ค๋
19์๋ฆฌ ์ซ์๊ฐ ๋ด ๋ธ๋ก๊ทธ ID๋ค
์ด ์ซ์๋ฅผ ์๋ ์ฝ๋ ์ค
๋
ธ๋์์ผ๋ก ํ์ํ ๊ณณ์ ๋ฃ์ผ๋ฉด ๋๋ค
[HTML ์ฝ๋]
<!--๋จ์ถํค-->
<script type='text/javascript'>
function getKey(event) {
if ((event.srcElement.tagName !== 'INPUT') && (event.srcElement.tagName !== 'TEXTAREA')) {
const keyStroke = event.which || event.keyCode;
const pressedKey = String.fromCharCode(keyStroke).toLowerCase();
if (pressedKey === 'q') {
window.location = 'https://www.blogger.com/blog/posts/์ด ์๋ฆฌ์ ID ๋ฃ๊ธฐ';
}
else if (pressedKey === 'm') {
const postId = document.querySelector('.post-wrapper').classList[2].split('-')[1];
window.location = 'https://www.blogger.com/blog/post/edit/์ด ์๋ฆฌ์ ID ๋ฃ๊ธฐ' + postId;
}
}
}
document.onkeypress = getKey;
</script>