Jump to content
php.lv forumi

Forma, kas rēķina!


Jamesonlv

Recommended Posts

Labdien. Ir viens jautājums. Nemāku to pareizi noformulēt, bet gribu uzzināt vai redzēt kaut kur piemēru:

 

Ir teiksim divas input formas 1. Forma, piemēram, Latvijas Lati, otrā Lietuvas Lits.

 

Man vajag izdarīt tā, ka ievadot piemēram 10 latus augšējajā formā, man apakšējajā formā parādītos cik tas būtu litos. Respektīvi izrēķina kursu.

 

Kā sauc šādu funkciju? Un vai ir kaut kur kādi piemēri.

 

 

Atvainojos par formulējumu.

 

Paldies jau iepriekš.

Link to comment
Share on other sites

  • Replies 31
  • Created
  • Last Reply

Top Posters In This Topic

Nu kā... forma sūta datus uz serveri — visi dati tiek apstrādāti (t.i., izrēķināti) un serveris sūta atpakaļ klientam atbildi ar rezultātu.

 

Pamēģini pats kko uztaisīt un parādi, kas tiktāl ir sanācis!

Link to comment
Share on other sites

javaskripts.php

 

<?php
header('content-type: text/javascript; charset=utf-8');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');header('HTTP/1.1 200 Ok');
# Zemāk kaut kāds saturs
?>

Link to comment
Share on other sites

Liec manu kodu iekš .js faila un, to failu includo starp <head></head> tagiem index.html faila. Pirmstam pārbaudi vai esi includojis jquery bibliotēku. (jQuery bibliotēka jāincludo pirms input.js).

 

Piemers -

 

index.html -

 

<html>

 <head>
   <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
   <script type="text/javascript" src="input.js"></script>
 </head>
 <body>
   <input type="text" id="lvl" name="lvl" placeholder="LVL" />
   <br />
   <br />
   <input type="text" id="ltl" name="ltl" placeholder="LT" />
 </body>
</html>

 

Un input.js -

 

$(document).ready(function(){
$("#lvl").change(function() {
   	var lvlValue = $("#lvl").val();
   	var ltValue = (lvlValue*4.91289).toFixed(2);
   	$("#ltl").val(ltValue);          
});
$("#ltl").change(function() {
   	var ltValue = $("#ltl").val();
   	var lvlValue = (ltValue/4.91289).toFixed(2);
   	$("#lvl").val(lvlValue);
});
});​

Edited by y2ok
Link to comment
Share on other sites

Lūdzu atceries, ka tas bija tikai kā piemērs, necentos meklēt valūtas kursu, bet vienkārši paņēmu to, ko google izmeta ierakstot LVL to LTL :) .

 

Varētu derēt, ka topika autoram vajag visu gatavu.

 

Man ir index.htm fails un esmu uztaisījis input.js failu. Kas man katrā failā jaliek iekšā īsti? Man šitas .js ir absolūti melna bilde.

 

Gribēšu redzēt, kā topika autors dabūs valūtas kursu no Latvijas bankas mājaslapas.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...