フォーム非表示ドメインの値とポップアップdivを取得
9661 ワード
フォーム非表示ドメインの値の取得
var rad = $(“input:hidden[name=‘dbrief’]”).val();
ラベルをクリックすると、対応するdivがポップアップされます.
var rad = $(“input:hidden[name=‘dbrief’]”).val();
ラベルをクリックすると、対応するdivがポップアップされます.
<html>
<head>
<meta charset="UTF-8">
<title>title>
<style>
.black_overlay {
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index: 1001;
-moz-opacity: 0.8;
opacity: .80;
filter: alpha(opacity=88);
}
.white_content {
display: none;
position: absolute;
top: 25%;
left: 25%;
width: 55%;
height: 55%;
padding: 20px;
border: 7px solid cadetblue;
background-color: white;
z-index: 1002;
overflow: auto;
}
style>
head>
<body>
<a href="#" onclick="document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">opena>
<div id="light" class="white_content">
<a href="#" style="float: right;" onclick="document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">✘a>
div>
<div id="fade" class="black_overlay">div>
body>
html>