btt50 Posted January 11, 2012 Report Share Posted January 11, 2012 Eu estou a aprender java script e fiquei com uma duvida como e que posso ligar este codigo a base de dados<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript"> jQuery.fn.toggleText = function(a,b) { return this.html(this.html().replace(new RegExp("("+a+"|"+b+")"),function(x){return(x==a)?b:a;})); } $(document).ready(function(){ $('.tgl').before('<span>[Ver Conteúdo]</span>'); $('.tgl').css('display', 'none') $('span', '#box-toggle').click(function() { $(this).next().slideToggle('slow') .siblings('.tgl:visible').slideToggle('fast'); $(this).toggleText('Revelar','Esconder') .siblings('span').next('.tgl:visible').prev() .toggleText('Revelar','Esconder') }); }) </script>Ajudem me Obrigado Quote Link to comment Share on other sites More sharing options...
0 Mack Posted January 21, 2012 Report Share Posted January 21, 2012 Acho que você confundiu Java com JavaScript. JavaScript não faz conexão com banco de dados, o máximo que você consegue armazenar com JavaScript são cookies. Quote Link to comment Share on other sites More sharing options...
Question
btt50
Eu estou a aprender java script e fiquei com uma duvida como e que posso ligar este codigo a base de dados
Ajudem me Obrigado
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.