一个典型的Prototype 示例代码

function onRequest()
{
 var vehicleid  =  $F('desAutos');
 if(vehicleid == null || vehicleid == undefined || (!vehicleid) || vehicleid=="" )
 {
  window.alert("请输入目标车辆");
  return;
 }
 
 var cc = getRadioValue("category");
 if(cc == null || cc == undefined || (!cc)  )
 {
  window.alert("请选择要执行的操作");
  return;
 } 

 var sUrl = "../getData"; 
 var request = new Ajax.Request(sUrl,
  {
   method  :'get',
   onSuccess :onSuccess,
   onFailure :onFailure,
   parameters :{vid:vehicleid,c:cc}
  }
 );
 
 window.alert("已成功设置");
}

你可能感兴趣的:(prototype)