简体   繁体   中英

Javascript post data from included file to parent

I have a file index.asp where i include files

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

Each file has it own div equal to it name

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

middle.asp file have script

function SendFiltered() {

    $.ajax({
        url: '/Filtered.asp',
        type: 'POST',
        data: "",
        dataType: 'text',
        success: function (data) {
            $(".center").html(data)
        }
    });
};

So i need from middle.asp (called from index.asp) insert Post data to center.asp div

But $(".center").html(data) cant do this.

Is this possible at all?

If you include your jQuery code inside

$( document ).ready(){

 });

the action will run once the DOM is loaded

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM