0
我想用live
或on
初始化jquery ui button plugin
。意思是這樣的:使用live或jquery初始化jquery ui插件
$('button').live("which event", function() { $(this).button(); });
但我不知道我可以在這個地方使用的事件。我試過load
和ready
,但沒有成功。然後我試了custom event
也:
$('button').live("event", function() { $(this).button(); });
$('button').trigger('event');
這也不行。請幫我!