Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaoru-fukusato/c56a342c262c67d43f21669e10d49512 to your computer and use it in GitHub Desktop.
Save kaoru-fukusato/c56a342c262c67d43f21669e10d49512 to your computer and use it in GitHub Desktop.
コピペで学べるプログラミング基本2-4
<script type="text/javascript"><!--
myFlg = 0;
function myFunc(){
if (myFlg == 0){
document.myForm.myFormMes.value = "いらっしゃいませ!";
myFlg = 1;
}else{
document.myForm.myFormMes.value = "";
myFlg = 0;
}
}
// --></script>
<form name="myForm">
<input type="text" size="20" name="myFormMes">
</form>
<script type="text/javascript"><!--
setInterval("myFunc()", 500);
// --></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment