コンテンツへスキップ

MEMO GOLD ホームページ制作

Just another WordPress site

2025年5月
月 火 水 木 金 土 日
 1234
567891011
12131415161718
19202122232425
262728293031  
« 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