国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

簡(jiǎn)單了解JavaScript彈窗實(shí)現(xiàn)代碼

瀏覽:129日期:2023-10-30 16:50:35

功能

點(diǎn)擊寫(xiě)點(diǎn)什么彈窗,可以輸入文字。

關(guān)閉彈窗時(shí)自動(dòng)保存,并且將彈窗內(nèi)容轉(zhuǎn)換為段落中的文字。

low沒(méi)有下限

實(shí)現(xiàn)

step1 設(shè)置彈窗容器,包含關(guān)閉按鈕和文本區(qū)域,設(shè)置display為隱藏(none),并設(shè)置在頂層。

step2 設(shè)置彈窗按鈕(這里是點(diǎn)擊段落內(nèi)容呀),并書(shū)寫(xiě)對(duì)應(yīng)的js函數(shù)(將彈窗的display顯示)。

step3 設(shè)置關(guān)閉按鈕的js函數(shù),獲取文本并加入到段落中,關(guān)閉彈窗(還是display?。?/p>

代碼

html代碼

<!DOCTYPE html><html><head><meta charset='UTF-8'><title>彈窗</title><link rel='stylesheet' type='text/css' href='http://www.intensediesel.com/bcjs/style.css' rel='external nofollow' ><link rel='stylesheet' rel='external nofollow' ></head><body><p onclick='writeBlog()'>今天想寫(xiě)點(diǎn)什么?</p><div id='open'><div class='open-content'><span onclick='closeit()'><i class='fa fa-close'></i></span><textarea rows='10' cols='90' placeholder='寫(xiě)下生活' ></textarea> </div></div></body> <script type='text/javascript' src='http://www.intensediesel.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';}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 达拉特旗| 鄂托克旗| 永济市| 曲阜市| 鸡西市| 会理县| 延庆县| 莱西市| 凭祥市| 米易县| 格尔木市| 平泉县| 彩票| 祁连县| 泽库县| 巩义市| 伊吾县| 阳江市| 西和县| 景谷| 武川县| 洪江市| 周口市| 道孚县| 新河县| 芦溪县| 日喀则市| 房山区| 五常市| 扎兰屯市| 扬州市| 望奎县| 内黄县| 新安县| 科技| 桂阳县| 关岭| 远安县| 永昌县| 广饶县| 岐山县|