Я хотел бы иметь возможность устанавливать переменные в документе, а затем с помощью загрузки AJAX получить значения переменной.
loadme.htm:
<html>
<head>
<script>
var test_variable='I need this variable in destination document'
</script>
</head>
<body>
HTML content that will also be loaded and placed in the destination document.
</body>
</html>
Документ назначения:
$.ajax({
type: "GET",
url: "loadme.htm",
dataType: "html",
success: function(html){
alert(test_variable)
$('#destination').html(html)
}
});
Код выше, очевидно, не работает.Итак ... как бы я мог получить значения переменной, которая была установлена в загруженном документе?
Спасибо!: -)