Сообщение от Officeoff.ru
|
Почему window.open, не работает внутри post?
|
Бивас, тест!
Создал файл tmp.csp
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
$.post(
"tmp1.csp",
{test: 'Test'},
function(data){
alert(data)
window.open('tmp2.csp?data='+data);
}
);
});
</script>
</head>
<body>
</body>
</html>
Создал файл tmp1.csp
Создал файл tmp2.csp
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<style type='text/css'>
</style>
<script type='text/javascript'>
</script>
</head>
<body>
<p>#($g(%request.Data("data",1),"Нет данных..."))#</p>
</body>
</html>
Запустил tmp.csp - таки все работает!
Окно открывается... Параметр читается...