簡單了解JavaScript彈窗實現(xiàn)代碼
功能
點擊寫點什么彈窗,可以輸入文字。
關(guān)閉彈窗時自動保存,并且將彈窗內(nèi)容轉(zhuǎn)換為段落中的文字。
low沒有下限
實現(xiàn)
step1 設(shè)置彈窗容器,包含關(guān)閉按鈕和文本區(qū)域,設(shè)置display為隱藏(none),并設(shè)置在頂層。
step2 設(shè)置彈窗按鈕(這里是點擊段落內(nèi)容呀),并書寫對應(yīng)的js函數(shù)(將彈窗的display顯示)。
step3 設(shè)置關(guān)閉按鈕的js函數(shù),獲取文本并加入到段落中,關(guān)閉彈窗(還是display啊)
代碼
html代碼
<!DOCTYPE html><html><head><meta charset='UTF-8'><title>彈窗</title><link rel='stylesheet' type='text/css' href='http://m.b3g6.com/bcjs/style.css' rel='external nofollow' ><link rel='stylesheet' rel='external nofollow' ></head><body><p onclick='writeBlog()'>今天想寫點什么?</p><div id='open'><div class='open-content'><span onclick='closeit()'><i class='fa fa-close'></i></span><textarea rows='10' cols='90' placeholder='寫下生活' ></textarea> </div></div></body> <script type='text/javascript' src='http://m.b3g6.com/bcjs/show.js'></script></html>
CSS代碼
/* 彈窗 (background) */.open { display: none; /* 默認(rèn)隱藏 */ position: fixed; /* 固定定位 */ z-index: 1; /* 設(shè)置在頂層 */ left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4); }/* 彈窗內(nèi)容 */.open-content { background-color: #fefefe; margin: 10% auto; padding: 20px; border: 1px solid #888; width: 80%; }.textstyle{padding:20px;margin:10% auto;}/* 關(guān)閉按鈕 */.close { color: #aaa; float: right; font-size: 28px; font-weight: bold;}.close:hover,.close:focus { color: black; text-decoration: none; cursor: pointer;}
JS代碼
function writeBlog(){var open=document.getElementById('open');open.style.display='block';}function closeit(){var text=document.getElementById('textstyle').value;document.getElementById('p1').innerHTML+='<br>'+text;document.getElementById('open').style.display='none';}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. IntelliJ IDEA設(shè)置自動提示功能快捷鍵的方法2. PHP程序員簡單的開展服務(wù)治理架構(gòu)操作詳解(二)3. PHP如何開啟Opcache功能提升程序處理效率4. Python3 json模塊之編碼解碼方法講解5. android H5本地緩存加載優(yōu)化的實戰(zhàn)6. JavaScript創(chuàng)建表格的方法7. 從Python的字符串中剝離所有非數(shù)字字符(“?!背猓?/a>8. ASP.NET MVC使用jQuery ui的progressbar實現(xiàn)進(jìn)度條9. 詳解如何使用Net將HTML簡歷導(dǎo)出為PDF格式10. python新手學(xué)習(xí)使用庫

網(wǎng)公網(wǎng)安備