简体   繁体   中英

pass variable to new HTML with window.open

Im opening html file from js function:

function initCategoryPage(url){
    var catUrl=url;
    window.open("category.html");
}

I putted this script in "category.html" but it doesnt get the var catUrl:

<script>
    myUrl = window.opener.catUrl;
    alert(myUrl)
    id=1;
    firstTime=true;
    ArticlesBlock(); 
</script>

how can I pass it to category.html?

The reason it can not read it is because the variable is not global. The scope is limited to that method.

function initCategoryPage(url){
    window.catUrl=url;  /*make it global*/
    window.open("category.html");
}

A better solution would be to pass it as a querystring or use postMessage to get the value.

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