rafaeldorazio Postado Setembro 1, 2010 Denunciar Share Postado Setembro 1, 2010 o $("button").live("click", function(){ não está funcionando, como eu faço para adicionar o evento click no meu plugin ? <html> <head> <script src="js/jquery-1.4.1.js" type="text/javascript"></script> <script> $(document).ready(function () { $("button").live("click", function(){ alert(""); return false; }); jQuery.fn.MsgBox = function(options, button) { settings = jQuery.extend({ type: "", id: "", text: "" }, button); settings = jQuery.extend({ type: "", word: "" }, options); var htmlButton = ""; $.each(button, function(i, item){ htmlButton += '<input type="'+ item.type +'" id="'+ item.id +'" value="'+ item.text +'">'; }); if( options.type == "question" ) { this.html(options.type +" "+ options.word +"<br />"+ htmlButton); } if( options.type == "confirm" ) { this.html(options.word +"<br />"+ htmlButton +"<br />"+ htmlButton); } if( options.type == "error" ) { this.html(options.word +"<br />"+ htmlButton +"<br />"+ htmlButton); } if( options.type == "info" ) { this.html(options.word +"<br />"+ htmlButton +"<br />"+ htmlButton); } }; $("#teste").MsgBox(options = { type: "question", word: "Deseja fazer a exclusão ?" }, button = [{ type: "button", id: "sim", text: "Sim" }, { type: "button", id: "cancelar", text: "Cancelar" }] ); }); </script> </head><body> <!-- http://docs.jquery.com/Plugins/Authoring#Options -> DOCUMENTAÇÃO DE COMO CRIAR COMPONENTES --> <div id="teste"></div> </body></html> Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
rafaeldorazio
o
não está funcionando, como eu faço para adicionar o evento click no meu plugin ?Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.