Jump to content
Fórum Script Brasil
  • 0

Ajuda Com Query String


marceloks

Question

Alguém sabe criar e editar um Query string em html , index.html?pagina=uma_pagina

Exemplo:

www.seusite.com.br/index.html?pagina=uma_pagina

Achei em um site o arquivo, mais não sei como edita-lo, alguém poderia me dar um help:

Site:

Clique aqui para ver o site

Serei grato desde já!

Marcelo KS ph34r.gif

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

<script Language="JavaScript">

<!--

/*

* name=valor

*

*/

function getArgs() {

var args = new Object();

// Get Query String

var query = location.search.substring(1);

// Split query at the comma

var pairs = query.split("&");

// Begin loop through the querystring

for(var i = 0; i < pairs.length; i++) {

// Look for "name=value"

var pos = pairs.indexOf('=);

// if not found, skip to next

if (pos == -1) continue;

// Extract the name

var argname = pairs.substring(0,pos);

// Extract the value

var value = pairs.substring(pos+1);

// Store as a property

args[argname] = unescape(value);

}

return args; // Return the Object

}

// Set Defaults

var StyleSheet = "StyleSheet"

var OuterTableWidth = "640"

// Get the values back

var args = getArgs(); //Get the arguments

if (args.CSSPATH) StyleSheet = (args.CSSPATH);

if (args.OTBL) OuterTableWidth = (args.OTBL);

// ******* Esta é a parte final que escreve o que se envia pagina.html?name=xxxxxxxxxx

document.write("[" + args.CSSPATH + ]");

//atencão só podes ver o efeito de pagina.html?name=xxxxxxxxxx quando ela estiver no servidor

//-->

</SCRIPT>

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
Answer this question...

×   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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...