Jump to content
  • 0

Вытягивание данных с URL


user
 Share

Question

7 answers to this question

Recommended Posts

  • 0

я тоже полный ноль но думаю что то типа такого

alert(GET['page']);

это если по аналогии с пхп... echo $_GET['page'];

если не поможет то почитайте http://www.realcoding.net/article/view/2696

Edited by Джин
Link to comment
Share on other sites

  • 0

> Джин

Написал как-то чукча роман, приходит к издателю, тот терпелизво читает при нем до конца и говорит:

- Вы сами то это читали?

- Эээ не, однака! Чкуча не читатель, чукча писатель.

Так и вы херню написали, хотите наверное что-бы вас прочли.

Link to comment
Share on other sites

  • 0

лучше не знать но пытаться помочь, хотя бы ссылками на другие статьи, чем знать и говорить какие все тупые.

> И что с ним теперь делать?

С вашим знанием предмета разговора только пойти повешаться.

Link to comment
Share on other sites

  • 0
Надо вытянуть из ссылки типа http://www.url.ru?page=index значение index.

Это делается не так и просто, но и не слишком сложно

/**
* Function parses supplied query string and returns the hash with the values
* Multiple values are stored in the array
*
* @param {String} q query string
* @return {Object}
* @scope public
*/
function parseQuery (q) {
if ('string'!=typeof q || q.length<2) return {};
q = q.split(/&|&/g);
for (var z=0,qL=q.length,rs={},kv,rkv;z<qL;z++) {
kv=q[z].split("=");
/*
* convert PHP and Perl-styled hashes to JS has keys
*/
kv[0]=kv[0].replace(/[{}\[\]]*$/,"");
rkv = rs[kv[0]];
/*
* replace all + with spaces, unescape skips this part
*/
kv[1]=unescape(kv[1]?kv[1].replace("+"," "):"");
if (rkv)
if ('array'==typeof(rkv))rs[kv[0]][rs[kv[0]].length]=kv[1];
else rs[kv[0]]=[rs[kv[0]],kv[1]];
else rs[kv[0]]=kv[1];
}
return rs
}

Ну и вызываете таким образом

alert(window.location.search.substring(1)+"\n"+parseQuery(window.location.search.substring(1)).page);

Эту и другие полезные функции можно найти в http://svn.debugger.ru/wsvn/JS%20libraries...runk/helpers.js

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.
Note: Your post will require moderator approval before it will be visible.

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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy