DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery級聯操作綁定事件實例教程
jQuery級聯操作綁定事件實例教程
編輯:JQuery特效代碼     

級聯操作綁定事件是jQuery非常具有實用價值的一個技巧,本文即以實例形式實現這一功能。分享給大家供大家參考之用。具體方法如下:

本文所述實例主要實現jQuery操作一個列表,根據類別選出學校,點擊學校出現院系,點擊院系出現專業,然後鏈接至專業申請頁面。

具體功能代碼如下:

$("li.university").click(function(){
  var id = $(this).attr("rel");
  $.get("data.aspx?type=u&id="+id ,
  function(html){$("#universityselect").html(html);});
});
$("li.universityselect").click(function(){
  var id = $(this).attr("rel");
  $.get("data.aspx?type=s&id="+id ,
  function(html){$("#coursetype").html(html);});
});
$("li.course").click(function(){
  //var id = $(this).attr("rel");
  alert("dd");
  //$.get("data.aspx?type=p&id="+id ,
  //function(html){$("#sourseselect").html(html);});
});

相信本文所述對大家的jQuery程序設計有一定的借鑒價值。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved