コンテンツへスキップ

MEMO GOLD ホームページ制作

Just another WordPress site

2025年6月
月 火 水 木 金 土 日
 1
2345678
9101112131415
16171819202122
23242526272829
30  
« 3月    

アーカイブ

  • CODE X
  • ▶ 条件分岐タグ
  • カスタムフィールドテンプレートの開発者達

カテゴリー

メタ情報

  • ログイン
  • 投稿フィード
  • コメントフィード
  • WordPress.org

タグ: 文字置き換え

jクエリで文字置き換え参考

http://www.webopixel.net/javascript/195.html

<script type="text/javascript">
$(function() {
	$('p').each(function(){
		var txt = $(this).html();
		$(this).html(
			txt.replace('javascript','jQuery')
		);
	});
});
</script>

詳しくは参考ぺーじにほかのもあった

投稿日: 2013年11月29日2013年12月12日カテゴリー Code コード, jQueryタグ 文字置き換え
Proudly powered by WordPress