1. 程式人生 > 程式設計 >簡單瞭解JavaScript彈窗實現程式碼

簡單瞭解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); 
  background-color: rgba(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";
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。