我正在開發一個網站,目前我堅持註冊過程。當我要求用戶註冊我的網站時,他們需要選擇一個團隊的人數。當我在選擇框中選擇人數時,我的網站會根據我選擇的人數顯示輸入字段。這適用於Mozilla Firefox(Mozilla/5.0(X11; U; Linux x86_64; en-US; rv:1.9.2.24)Gecko/20111109 CentOS/3.6.24-3.el6.centos Firefox/3.6.24)。我的jquery腳本只適用於mozilla。 Chrome瀏覽器,IE瀏覽器,Safaria和Opera不能用我的jQuery
儘管如此,其他網絡瀏覽器並不根據我選擇的人數顯示輸入字段。
這是下面的代碼:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#muestra1").click(function(){
$("#loscuatro").hide();
});
});
$(document).ready(function(){
$("#muestra2").click(function(){
$("#loscuatro").show();
});
});
</script>
</head>
<body>
<div id="container" class="ltr">
<li><span>
<div id="container" class="ltr">
<h2>Please give us your name</h2>
<ul>
<li>
<span>
Number of team members <select name="integrantes" id="integrantes" >
<option name="member1" value="1" id="muestra1" >1</option>
<option name="member2" value="2" id="muestra2">2</option>
</li><hr /></span>
<b><h3>Leader</h3></b>
<li>
<span>
Name* <input id="Field0" /></span>
</li><hr />
<div id="loscuatro">
<b><h3>Volunteer</h3></b>
<li>
<span>
Name* <input id="Field0" /></span>
</li><hr />
</div><!--end of volunteer loscuatros-->
</div>
</body>
</html>
請,我會很高興收到支持這一代碼,因爲我已經看了好幾遍,我無法找到的bug。我說這不是我註冊部分的最終設計。
乾杯。
李應UL或OL裏面,你有很多外面混有其它元素! ..和$(文件)。就緒功能應該結合,因爲這是多餘的,他們將工作作爲一個在年底 – CME64
HTML標籤的嵌套是不妥當的 –