中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript彈窗的實現方法

發布時間:2020-07-28 15:10:08 來源:億速云 閱讀:177 作者:小豬 欄目:web開發

這篇文章主要講解了JavaScript彈窗的實現方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

功能

點擊寫點什么彈窗,可以輸入文字。

關閉彈窗時自動保存,并且將彈窗內容轉換為段落中的文字。

low沒有下限

實現

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

step2 設置彈窗按鈕(這里是點擊段落內容呀),并書寫對應的js函數(將彈窗的display顯示)。

step3 設置關閉按鈕的js函數,獲取文本并加入到段落中,關閉彈窗(還是display啊)

代碼

html代碼

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>彈窗</title>
<link rel="stylesheet" type="text/css" href="style.css" rel="external nofollow" >
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.css" rel="external nofollow" >
</head>
<body>
	<p id="p1" onclick="writeBlog()">今天想寫點什么?</p>
	<div class="open" id="open">
		<div class="open-content">
			<span class="close" id="close" onclick="closeit()"><i class="fa fa-close"></i></span>
			<textarea class="textstyle" id="textstyle" rows="10" cols="90" placeholder="寫下生活" ></textarea> 
		</div>
	</div>
</body>
 <script type="text/javascript" src="show.js"></script>
</html>

CSS代碼

/* 彈窗 (background) */
.open {
  display: none; /* 默認隱藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 設置在頂層 */
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

/* 彈窗內容 */
.open-content {
  background-color: #fefefe;
  margin: 10% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}
.textstyle{
	padding:20px;
	margin:10% auto;
}
/* 關閉按鈕 */
.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";
}

看完上述內容,是不是對JavaScript彈窗的實現方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新野县| 内江市| 孙吴县| 永嘉县| 岳阳县| 许昌市| 宿州市| 乐安县| 昌邑市| 吉木乃县| 璧山县| 蒙阴县| 长宁县| 乌鲁木齐县| 浪卡子县| 永州市| 宜良县| 黄山市| 遵义市| 和田县| 武威市| 浙江省| 琼海市| 青河县| 外汇| 革吉县| 江城| 云阳县| 义马市| 乐清市| 崇文区| 金堂县| 宁晋县| 罗江县| 大洼县| 荔波县| 霍山县| 昌宁县| 高平市| 章丘市| 彰化县|