[新着] Webテンプレートを仮オープンしました
<input type="text" name="" onfocus="this.style.background='#FFFFCC'" onblur="this.style.background='#FFFFFF';">
<script type="text/javascript">
<!--
window.onload = function()
{
var inputTags = document.getElementsByTagName("input");
for( var ix = 0; ix < inputTags.length; ix++ ) {
inputTags[ix].onfocus = function(){ this.style.background = '#FFFFCC'; };
inputTags[ix].onblur = function(){ this.style.background = '#FFFFFF'; };
}
}
// -->
</script>