我正在寻找一个简单的 JQuery 选项卡示例,我计划在其中显示两种不同的形式。
我遇到了这个例子http://flowplayer.org/tools/demos/tabs/index.htm非常适合我的需要。
所以我实现了这个简单的例子。有问题的代码是:
<div class="panes"> <div>第一个标签内容。选项卡内容称为“窗格”</div> <div>第二个标签内容</div> <div>第三个标签内容</div> </div>
现在我的第一个选项卡的内容是一个表单,它有几个自己的 div 标签 - 当我把带有 div 标签的表单作为第一个标签的内容时 - 什么也没有出现。
所以我做了一个简单的更改,并在第一个选项卡的内容中添加了另一个 div 标签,如下所示,仍然没有出现:
<div class="panes"> <div><div>第一个标签内容。选项卡内容称为“窗格”</div></div> <div>第二个标签内容</div> <div>第三个标签内容</div> </div>
有没有一种简单的方法来解决这个问题。这是我想在我的第一个标签中显示的内容 - 感谢您的帮助
<div id="formbox" class="formbox"> <form id="shopping_form" method="post"> <div id="3" style="width:520px;" > <textarea id="message" name="message" rows="3" cols="50"></textarea> </div> <div id="store_row" style="width:220px;float:left;padding-bottom:10px;"><b>存储</b> <input type="text" id="store" name="store" class="required" size="20" /> <input type="hidden" id="store_id"/> </div> <div id="city_column" style="width:200px;float:left;padding-bottom:10px;"><b>城市</b> <input type="text" id="city" name="city" size="15"/> </div> <div id="findbutton_column" style="vertical-align:top;width:80px;float:left;"> <input class="find_address" id="findaddress" type="button" value="查找商店"/> </div> <div id="googlerow" style="width:120px;float:left;padding-bottom:10px;"> <b>选择商店</b><select id="google_stores" name="google_stores"></select> <input type="hidden" id="google_address"/> </div> <div id="google_message" style="float:left;padding-bottom:10px;display:none;"></div> <div id="locationrow" style="float:left;padding-bottom:10px;display:none;"> <b>地址/国家</b> <input type="text" id="address" name="address" size="20" /> <input type="text" id="country" name="country" size="20"/> </div> <div style="width:520px;float:left;padding-bottom:10px;" > <b>价格 <input type="text" id="price" name="price" size="20" /> </div> <div id="buttonrow" style="width:200px;float:right;display:none;" > <input id="it" type="image" src="http://images.pe.com.s3.amazonaws.com/it.png" height="35px"/> </div> </form> </div>