任何人都可以幫助我? 我要讓表演通過隱藏取決於值jQuery的一些格從兩個選擇框 這是我的代碼由jquery根據2選擇框中的2個值顯示隱藏div
$("#offer_seeking_select").change(function(){
var offer_seeking=$(this).val();
var selectedCategory=$("select.category-select:visible").last().find("option:selected").val();
$.get(www_base+"adding.php?cID="+selectedCategory+"&offer="+offer_seeking,function(data){
if(data.status=="ok"){$("#forms").html(data.html).trigger("forms_content_updated")
}})});
HTML代碼
<select id="drop-2"><option value="1">1</option><option value="2">2</option><option value="3">3</option></select>
<select id="drop-3"><option value="offer">Offer</option><option value="seeking">Seeking</option></select>
<div id="forms"></div>
和adding.php會顯示隱藏一些「格」在從#drop-2和drop-3中選擇時取決於數值,例如,如果我從drop-2中選擇1並從drop-3中選擇show #one和#three hide #two,否則從drop-2中選擇2並尋求下降3秀#two和#three hide #one
這個HTML文件adding.php因爲我不能在文件adding.php獲得CID,並提供
<div id="one">abc</div>
<div id="two">123</div>
<div id="three">789</div>
你可能需要一些時間來清理你的代碼,少做字符串concatination。 – Oybek 2012-02-18 11:05:00