Heim >Web-Frontend >HTML-Tutorial >请教jquery 控件显示div_html/css_WEB-ITnose

请教jquery 控件显示div_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:10:07881Durchsuche

有三个ul里有三个li 每个li控件一个图层显示

如下代码实现不了:为什么呢?



         
  • 000

  •      
  • 000

  •      
  • 000







<script> <br /> $(document).ready(function () { <br /> $("#li001").click(function(){ <br /> $("#001").show(); <br /> $("#002").hide(); <br /> $("#003").hide(); <br /> }); <br /> <br /> $("#li002").click(function(){ <br /> $("#002").show(); <br /> $("#001").hide(); <br /> $("#003").hide(); <br /> }); <br /> <br /> $("#li003").click(function(){ <br /> $("#003").show(); <br /> $("#002").hide(); <br /> $("#001").hide(); <br /> }); <br /> <br /> }) <p> <br /> <h2>回复讨论(解决方案) <p class="sougouAnswer"> <pre class="sycode" name="code">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&quot;&gt;&lt;/script&gt;&lt;/head&gt;&lt;body&gt;&lt;ul id=&quot;ul001&quot;&gt; &lt;li id=&quot;li001&quot;&gt;000&lt;/li&gt; &lt;li id=&quot;li002&quot;&gt;000&lt;/li&gt; &lt;li id=&quot;li003&quot;&gt;000&lt;/li&gt;&lt;/ul&gt;&lt;div id=&quot;001&quot; style=' background:red;width:50px; height:50px; display:none;'&gt;&lt;/div&gt;&lt;div id=&quot;002&quot; style=' background:blue;width:50px; height:50px;display:none;'&gt;&lt;/div&gt;&lt;div id=&quot;003&quot; style=' background:yellow;width:50px; height:50px;display:none;'&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt; $(document).ready(function () { $(&quot;#li001&quot;).click(function () { $(&quot;#001&quot;).show(); $(&quot;#002&quot;).hide(); $(&quot;#003&quot;).hide(); }); $(&quot;#li002&quot;).click(function () { $(&quot;#002&quot;).show(); $(&quot;#001&quot;).hide(); $(&quot;#003&quot;).hide(); }); $(&quot;#li003&quot;).click(function () { $(&quot;#003&quot;).show(); $(&quot;#002&quot;).hide(); $(&quot;#001&quot;).hide(); }); }) &lt;/script&gt;&lt;/body&gt;&lt;/html&gt;</pre> <br /> 其实是实现了。。只是没看到效果而已。。 <p class="sougouAnswer"> 果然是这样的。谢谢了。 </script>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn