Using JQuery to Access a New Window's DOM

前端 未结 3 1365
忘掉有多难
忘掉有多难 2020-12-03 21:11

I am creating a new window that will contain text that user will print. I would like to do something similar to this:

var new_win = window.open();
$(new_win.         


        
3条回答
  •  有刺的猬
    2020-12-03 21:39

    In our MVC Web application, We need to open a new tab and present a demo from a product. For this purpose, We need To apply some limitation in demo mode and click a button to play a video. we did it like this:

    DemoTab = window.open("someUrl/demo", "_blank");
    if (DemoTab) {                                
        $(DemoTab.document).ready(function () {        
            $("#hideInDemo", DemoTab.document).removeClass('floatContainer');
            $("#hideInDemo", DemoTab.document).css('display', 'none');
            $("#play", DemoTab.document).trigger('click');
        }); 
    }
    

    it only worked on Chrome and Edge.

    So we solved the problem by action controller whitch called to load the page. We just passed a parameter by ViewBag to view and on document ready we checked the parameter so then we knew that it called for demo. So we applied our limitations.

提交回复
热议问题