請問一下,怎樣才能得到點<i></i>會簽,索引到"class=open"這個標簽點一層,打開一層呢?<!DOCTYPE html><html><head>? ? <meta charset="UTF-8">? ? <title>Document</title></head><script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script><style>? ? ul{margin:0;padding:0;list-style-type:none;}? ? .area {margin: 0 auto; width: 1000px; border: 2px solid #000; background-color: #D0D0D0;}? ? .item {margin: 20px 0; border: 2px solid #878687;}? ? .click {padding: 5px 20px; background-color: #3812FB;}? ? .title {border: 2px solid #595959;margin: 20px;}? ? .open {width: 300px; height: 300px;background-color: #0CF5A8;margin-left: 60px; display: none;}</style><body><script>$(document).ready(function() {? ? //我知道這可以彈出"item"的索引值? ? // $(".item").each(function() {? ? // ? ? var _index=$(this).index();? ? // ? ? $(this).click(function() {? ? // ? ? ? ? alert(_index);? ? // ? ? });? ? // });? ? //但是怎樣才能得到點<i></i>會簽,索引到"class=open"這個標簽點一層,打開一層呢?? ? $(".click").each(function() {? ? ? ? var _index=$(this).index();? ? ? ? $(this).click(function() {? ? ? ? ? ? $(".open").show();? ? ? ? ? ? alert(_index);? ? ? ? });? ? });});</script>? ? <ul>? ? ? ? <li>? ? ? ? ? ? <i>點擊</i>? ? ? ? ? ? <div>請問一下,怎樣遍歷“點擊”打開按鈕,打開下面的“class="open"”的DIV</div>? ? ? ? ? ? <ul>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? </ul>? ? ? ? ? ? <div>? ? ? ? ? ? ? ? <div></div>? ? ? ? ? ? </div>? ? ? ? </li>? ? ? ? <li>? ? ? ? ? ? <i>點擊</i>? ? ? ? ? ? <div>請問一下,怎樣遍歷“點擊”打開按鈕,打開下面的“class="open"”的DIV</div>? ? ? ? ? ? <ul>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? </ul>? ? ? ? ? ? <div>? ? ? ? ? ? ? ? <div></div>? ? ? ? ? ? </div>? ? ? ? </li>? ? ? ? <li>? ? ? ? ? ? <i>點擊</i>? ? ? ? ? ? <div>請問一下,怎樣遍歷“點擊”打開按鈕,打開下面的“class="open"”的DIV</div>? ? ? ? ? ? <ul>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? ? ? <li></li>? ? ? ? ? ? </ul>? ? ? ? ? ? <div>? ? ? ? ? ? ? ? <div></div>? ? ? ? ? ? </div>? ? ? ? </li>? ? </ul></body></html>
請問一下,怎樣才能得到點<i></i>會簽,索引到"class=open"這個標簽點一層,打開一層呢?
未來99
2017-05-05 23:05:07