2011-10-17 46 views
0

想知道是否有人可以幫助我從下拉列表中打開onChange上的facebox。到目前爲止,我有這個。在選擇中打開facebox

<select><option value="www.google.com/" id="xxx"></option></select> 
在頭

我有

/* <![CDATA[ */ 
$(document).ready(function() { 
     $('a[rel*=facebox]').facebox(); 
    }); 
$(document).onchange(function() { 
     $("xxx").facebox.open(); 
    }); 
/* ]]> */ 

P.S這是一個條紋縮小版本

任何幫助,將不勝感激。

回答

0

您可以嘗試綁定

$(document).bind('reveal.facebox', function() { 
    $('#facebox .hero-link').click(function() { alert('click!'); }); 
});