MBC1986
Newbie | Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору Спасибо за ответ, но мне нужно с помощью JavaScript. В примерах есть такое, но там для метода "GET" и я н сильно понял что там к чему, может можно проще? <table width="100%" border="1" cellpadding="3" style="border-color: #999999; border-collapse: collapse;"> <tr style="font-weight: bold; color: #dddddd; background-color: #999999"> <td style="white-space: nowrap;"> Field</td> <td> Value</td> </tr> <script type="text/javascript"> <!-- function HTMLEncode( text ) { text = text.replace(/&/g, "&") ; text = text.replace(/"/g, """) ; text = text.replace(/</g, "<") ; text = text.replace(/>/g, ">") ; text = text.replace(/'/g, "'") ; return text ; } var aParams = document.location.search.substr(1).split('&') ; for ( i = 0 ; i < aParams.length ; i++ ) { var aParam = aParams[i].split('=') ; var sParamName = aParam[0] ; var sParamValue = aParam[1] ; document.write( '<tr>' ) ; document.write( '<td valign="top" style="white-space: nowrap;">' + sParamName + '</td>' ) ; document.write( '<td style="width: 100%;"><pre>' + HTMLEncode( decodeURIComponent( sParamValue.replace( /\+/g, ' ' ) ) ) + '</pre></td>' ) ; document.write( '</tr>' ) ; } //--> </script> Это всё работает, но для метода "GET". | Всего записей: 3 | Зарегистр. 07-01-2008 | Отправлено: 01:45 07-01-2008 | Исправлено: MBC1986, 01:49 07-01-2008 |
|