入力ボックスグレー還元

475 ワード

var tipword = "         ";
var tipstyle = {"color":"gray"};
var normalstyle = {"color":"black"};
$(function(){
	$("#fwsC_web_memo")
	.val(tipword).css(tipstyle)
	.focus(function() {
		if($.trim($(this).val()) == tipword) {
			$(this).val("").css(normalstyle);
		}
	})
	.blur(function() {
		if($.trim($(this).val()) == "") {
			$(this).val(tipword).css(tipstyle);
		}
	});
});