jQuey
1 2 3 4 5 6 |
$(function(){ $('.text').each(function(){ var txt = $(this).html(); $(this).html(txt.replace(/You are not allowed to edit/g,'編集権限はありません')); }); }); |
1 2 3 4 5 6 |
$(function(){ $('.text').each(function(){ var txt = $(this).html(); $(this).html(txt.replace(/You are not allowed to edit/g,'編集権限はありません')); }); }); |
コメント