Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Issikraipo dizainas.

Parašė maxas66· 2012 Lap. 30 16:11:26
#2


 
openside("Laikrodis");
 
?><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
	function showMilitaryTime() {
		if ($("#h24").attr("checked") == "checked")
			return true;
		return false;
	}
 
	function showTheHours(theHour) {
		if (showMilitaryTime() || (theHour > 0 && theHour < 13)) {
			if (theHour == "0") theHour = 12;
			return (theHour);
		}
		if (theHour == 0) {
			return (12);
		}
		return (theHour-12);
	}
 
	function showZeroFilled(inValue) {
		if (inValue > 9) {
			return "" + inValue;
		}
		return "0" + inValue;
	}
 
	function showAmPm() {
		if (showMilitaryTime()) {
			return ("");
		}
		if (now.getHours() < 12) {
			return (" am");
		}
		return (" pm");
	}
 
	function showTheTime() {
		now = new Date
		$("#showTime").val(showTheHours(now.getHours()) + ":" + showZeroFilled(now.getMinutes()) + ":" + showZeroFilled(now.getSeconds()) + showAmPm())
	}
 
	$(document).ready(function() {
		showTheTime();
		setInterval("showTheTime()", 1000);
	});
</script>
 
<center>
	<form name="form">
		<input type="text" name="showTime" id="showTime"><br/>
		<input type="radio" name="showMilitary" id="h24" checked>24 valandų<br>
		<input type="radio" name="showMilitary" id="h12">12 valandų<br>
	</form>
</center>
<? closeside();
 
 


iš kur pas tave tokie kodai >_< dabar veiks, pridėjau su jQuery, jei pjausis išimk tą viršuje jQuery