คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #4 : Code~.< เป็นปุ่มไว้โชว์เฉยๆกดไปไม่มีไร แต่ข้อความบนปุ่มจะเลื่อนได้^o^
<CENTER>
<form name="form2" onSubmit=null>
<!-- Replace the 'onSubmit=null' with 'action=[blah.html]' -->
<input type="submit" name="banner" VALUE="ไส่ข้อความจ้า.">
</form>
</CENTER>
<script language="JavaScript">
var id,pause=0,position=0;
function banner() {
// variables declaration
var i,k,msg=" ใสข้อความที่นี่";
// increase msg
k=(60/msg.length)+2;
for(i=0;i<=k;i++) msg+=" "+msg;
// show it to the window
document.form2.banner.value=msg.substring(position,position+20);
// set new position
if(position++==msg.length) position=0;
// repeat at entered speed
id=setTimeout("banner()",150); }
// end -->
banner();
</script>
ความคิดเห็น