コンテンツへスキップ

MEMO GOLD ホームページ制作

Just another WordPress site

2025年9月
月 火 水 木 金 土 日
1234567
891011121314
15161718192021
22232425262728
2930  
« 8月    

アーカイブ

  • 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