子页 -----

*{ margin:0px auto; opacity:0px;}
#s1{width:150px; height:300px; position:fixed; left:100px; top:100px;}
.yiji{ width:150px; height:35px; background-color:#93C; border:1px solid white; text-align:center; line-height:35px; vertical-align:middle; clear:white; font-weight:bold}
#aa1{ width:150px; display:none}
.qqq1{ width:150px; height:35px; background-color:#0F0; border:1px solid white; text-align:center; line-height:35px; vertical-align:middle; clear:white; font-weight:bold}
#aa2{ width:150px; display:none}
.yyy2{ width:150px; height:35px; background-color:#0F0; border:1px solid white; text-align:center; line-height:35px; vertical-align:middle; clear:white; font-weight:bold}
#aa3{ width:150px; display:none}
.www2{ width:150px; height:35px; background-color:#0F0; border:1px solid white; text-align:center; line-height:35px; vertical-align:middle; clear:white; font-weight:bold}

<div id="s1" style="width:150px; height:300px">
<div class="yiji" onclick="caidan(‘aa1‘)">
QQ
</div>
<div id="aa1">
<div class="qqq1">111</div>
<div class="qqq1">222</div>
<div class="qqq1">333</div>
</div>

<div class="yiji" onclick="caidan(‘aa2‘)">
YY
</div>
<div id="aa2">
<div class="yyy2">111</div>
<div class="yyy2">222</div>
<div class="yyy2">333</div>
</div>

<div class="yiji" onclick="caidan(‘aa3‘)">
微信
</div>
<div id="aa3">
<div class="www2">111</div>
<div class="www2">222</div>
<div class="www2">333</div>
</div>

</div>

</body>

<script type="application/javascript">
function caidan(d)
{
var aa = document.getElementById(d);
if(aa.style.display=="block")
{
aa.style.display="none";
}
else
{
aa.style.display = "block";
}
}
</script>

时间: 2024-10-29 10:46:25

子页 -----的相关文章

jQuery操作iframe子页中元素代码实例

jQuery操作iframe子页中元素代码实例:本章节介绍一下如何在父页面中操作iframe子页面中的元素,希望能够给需要的朋友带来一定的帮助.一.父页面代码: <!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <

母版页的铵钮事件去获取子页的内容

本例演示在母版页中的铵钮事件去获取某些子页的内容.在母版本中,有一个铵钮事件.当浏览某些子页时,用户点一点母版页的铵钮,能去获取当前页的内容. 子页很多,但我们并不是每一个子页的内容均要去获取,而且每个子页的内容不一样.因此你需要让父页的事件知道,哪些子页是需要获取的. 说白了,这就是平时所说的接口.让不同的对象去处理一个相同的行为. 先来看看此接口: using System; using System.Collections.Generic; using System.Linq; using

父页面操作嵌套iframe子页面的HTML标签元素

一个页面A.html使用iframe嵌套一个页面B.html,在A页面写js操作B页面HTML元素,首先要获取到B页面document对象,才能对嵌套页面进行操作 请看一个实例,在A页面写js操作B页面div的内容: A.html代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="

MVC母版面,子页的脚本生成在最后

js修改编辑器内容、修改iframe子页内容

$('#question-stem-uploader').on('click','',function(){ //获取编辑器内容(ke-edit-iframe: 编辑器iframe的classm名称)(ke-content:iframe里面包含内容的div的class名称) var html = $(".ke-edit-iframe").contents().find(".ke-content").html(); $(".ke-edit-iframe&qu

mui触发自定义事件(子页面返回传递给父级页面值)

在App开发中,经常会遇到子页面给父级页面传值,通过自定义事件,用户可以轻松实现数据传递. 一.添加自定义事件监听操作和标准js事件监听类似,可直接通过window对象添加,如下: window.addEventListener('customEvent',function(event){ //通过event.detail可获得传递过来的参数内容.... }); 1.customEvent   自定义事件的名称 2.function    接收到值后处理的方法 二.触发自定义事件 通过mui.f

iframe 子页面获取父页面的元素并且控制样式

父页面的代码 <div id="div5" style="position:relative;height:500px;">                       <iframe scrolling="auto" frameborder="0"  id="content" name="content" src ="./cpcia_gonggao.jsp&

父页面调用子页面的方法

其实一句话就可以调用子页面的方法了,何必整得那么纠结是吧,感谢java大神: var dsjg1=document.getElementById("div-dsjg").contentWindow.checkEmpty(); 我的子页面有一个方法: 子页面js: function checkEmpty(){ alert("我是儿子!"); } 子页面body内容省略. 父页面: <iframe id="div-dsjg" src="

母板页的导航背景色更改

假设我的母版页是Page.Master 首先在母版页定义一个公共变量private string _currentMenu;public string CurrentMenu{set { this._currentMenu = value; }get { return this._currentMenu; }} 然后再子页面的pageload事件里给公共变量赋值((Page)Master).CurrentMenu = "材料交换"; 最后,母版页的导航菜单这么写<li>&l