Javascript将包含文件中的数据发布到父级

时间:2015-06-18 09:58:07

标签: javascript jquery html asp.net

我有一个文件index.asp,其中包含文件

<?php
$xmlString = '<Line0 User="-5" ID="7436194"><Node0 Key="<1" Value="0"></Node0></Line0>';

$xmlString = preg_replace_callback('~(?:").*?(?:")~',
    function ($matches) {
        return htmlspecialchars($matches[0], ENT_NOQUOTES);
    },
    $xmlString
);

header('Content-Type: text/plain');
echo $xmlString; // you will see the special characters are converted to HTML entities :)

echo PHP_EOL . PHP_EOL; // tidy :)
$xmlobj = simplexml_load_string($xmlString);
var_dump($xmlobj);
?>

每个文件都有自己的div等于名称

<!--#include file="/header.asp"-->
<!--#include file="/middle.asp"-->
<!--#include file="/center.asp"-->
<!--#include file="/bottom.asp"-->
<!--#include file="/footer.asp"-->

middle.asp文件有脚本

<div class="header"></div>
<div class="middle"></div>
<div class="center"></div>
<div class="bottom"></div>
<div class="footer"></div>

所以我需要从middle.asp(从index.asp调用)将post数据插入到center.asp div

但是function SendFiltered() { $.ajax({ url: '/Filtered.asp', type: 'POST', data: "", dataType: 'text', success: function (data) { $(".center").html(data) } }); }; 无法做到这一点。

这有可能吗?

1 个答案:

答案 0 :(得分:0)

如果在

中包含jQuery代码
$( document ).ready(){

 });

一旦加载DOM就会运行该动作