// JavaScript Document

//右侧耗材专用搜索
$(document).ready(function(){ 
$("#findform").submit(function (){
  brandid=$("#brandid").val();
  typeid=$("#typeid").val();
  modelid=$("#modelid").val();
  if (brandid==""){  alert('请选择品牌！');  return false  }
  if (typeid==""){  alert('请选择类型！');  return false  }
  if (modelid==""){  alert('请选择型号！');  return false  }

})
})

$(document).ready(function(){ 
$("#brandid").change(function(){
$brandid=$("#brandid").val();
$.post("jquery/index/gettype.php",{ brandid:$brandid },
function (data){$("#typeid").html(data);})
$("#typeid").attr('disabled',false);
$("#modelid").html("<option value=''>--选择型号--</option>");

})
})

$(document).ready(function(){ 
$("#typeid").change(function(){
$brandid=$("#brandid").val();
$typeid=$("#typeid").val();
$.post("jquery/index/getmodel.php",{ brandid:$brandid ,typeid:$typeid},
function (data){$("#modelid").html(data);})
$("#modelid").attr('disabled',false);
})
})
$(document).ready(function(){ 
$("#modelid").change(function(){
$modelid=$("#modelid").val();
$addr="supplies-gid"+$modelid+".cfm";
window.location.href=$addr; //链接到商品

})
})


 function showtype(id){
   	   var p=$("#c"+id).offset();
	   cleft=p.left;
	   ctop=p.top;
	   $.post("index/type.php",{ classid:id},function (data){$("#Layer1").html(data);})
	   document.getElementById("Layer2").style.left=cleft-8;
	   document.getElementById("Layer2").style.top=ctop;
	   document.getElementById("Layer1").style.left=cleft+160;
	   document.getElementById("Layer1").style.top=ctop;
	   document.getElementById("Layer2").innerHTML=document.getElementById("c"+id).innerHTML 
	   document.getElementById("Layer1").style.display="inline";
	   document.getElementById("Layer2").style.display="inline";
	}

 
