Tower of Saviors 維基
Tower of Saviors 維基
无编辑摘要
无编辑摘要
第6行: 第6行:
 
return;
 
return;
 
}
 
}
$('.skill_toggle').click(function(){
+
$('.skill_change_button').click(function(){
 
alert('123');
 
alert('123');
 
tmp1 = $(this).parent().parent().parent().find('.note').not(':hidden');
 
tmp1 = $(this).parent().parent().parent().find('.note').not(':hidden');

2015年1月31日 (六) 10:55的版本

<script> function SkillNoteChnage(){

 if(typeof jQuery == "undefined")
 {
   setTimeout(SkillNoteChange, 100);
   return;
 }
 $('.skill_change_button').click(function(){
   alert('123');
   tmp1 = $(this).parent().parent().parent().find('.note').not(':hidden');
   tmp2 = $(this).parent().parent().parent().find('.note').is(':hidden');
   tmp1.hide();
   tmp2.show();
 });

} </script>