myplugins.js 496 B

1234567891011121314151617181920212223242526
  1. $.TE.plugin("bold",{
  2. title:"标题",
  3. cmd:"bold",
  4. click:function(){
  5. this.editor.pasteHTML("sdfdf");
  6. },
  7. bold:function(){
  8. alert('sdfsdf');
  9. },
  10. noRight:function(e){
  11. if(e.type=="click"){
  12. alert('noright');
  13. }
  14. },
  15. init:function(){
  16. },
  17. event:"click mouseover mouseout",
  18. mouseover:function(e){
  19. this.$btn.css("color","red");
  20. },
  21. mouseout:function(e){
  22. this.$btn.css("color","#000")
  23. }
  24. });