Strict Standards: Resource ID#28 used as offset, casting to integer (28) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401

Strict Standards: Resource ID#30 used as offset, casting to integer (30) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401

Strict Standards: Resource ID#31 used as offset, casting to integer (31) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401
ТвойWeb :: Версия для печати :: Как извлечь значение переменной? [2]
ТвойWeb » WebMaster класс » JavaScript » Как извлечь значение переменной?

Страниц (2): « 1 [2]
 

11. ETC - 21 Июля, 2006 - 07:54:00 - перейти к сообщению
SviMik
alert(location.search.slice(1)) проверь для начала.
12. Дмитрий Б. - 21 Июля, 2006 - 22:34:51 - перейти к сообщению
SviMik
ETC прав: там же именно location.search берётся, а не location.href, так что подстановка адреса здесь не является допустимой операцией... Попробуй вот это (test.htm):
CODE:
<html><body><script>
function getSearchData(name)
{
var a=location.search.slice(1).split('&'), b, i, r=new Object();
for (i=0; i<a.length; i++)
if ((b=a[i].split('=')).length>1)
r[b[0]]=b[1];
return (name ? r[name] : r);
}


document.write(getSearchData('1')+'-'+getSearchData('3'));
</script>
<p><a href="test.htm?1=2&3=4">Click me!</a></p>
</body></html>
13. SviMik - 22 Июля, 2006 - 08:05:49 - перейти к сообщению
Хех, а я и не знал про location.search...
14. Дмитрий Б. - 22 Июля, 2006 - 08:22:23 - перейти к сообщению
SviMik
К сведению:
location.href
location.search
location.protocol
location.hostname
location.pathname
location.hash

document.links[0].href
...
document.links[0].hash

Форум на AlfaSpace.NET


Powered by ExBB
ExBB FM 1.0 RC1 by TvoyWeb.ru
InvisionExBB Style converted by Markus®

[Script Execution time: 0.0355]     [ Gzipped ]



Notice: ob_end_flush(): failed to send buffer of ob_gzhandler (1) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/page_tail.php on line 33