简体   繁体   English

如何从java脚本广告行获取网址?

[英]How can I get url from java script ad line?

I have one div when I click that div I want to open a child browser.I have the code for child browser but when I click the div it executes the javascript line and I didn't get any url from there. 当我点击那个div我想要打开一个子浏览器时,我有一个div。我有子浏览器的代码,但当我点击它时,它执行javascript线,我没有从那里得到任何网址。 Please check my code 请检查我的代码

Div code Div代码

  <div class="box_padding " onClick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes);return false;" id="column-c-box-1" >

  <script type="text/javascript"  src="http://ad.leadboltads.net/show_app_ad.js?section_id=838333320"></script>

  </div>

when I tried this nothing happening. 当我尝试这件事时什么也没发生。

So I have tried one more way to solve this issue 所以我尝试了另一种方法来解决这个问题

  function openwindow(){
            w=open("myurl",'windowname','width=600,height=250,scrollbars,resizable,toolbar,status');
            with(w.document){
                write("<body>");
                write("This is a new window");
                write("</body>");
            }
            return false;
        }

HTML: HTML:

<div class="box_padding "onClick="openwindow();" id="column-c-box-1" >
 <script type="text/javascript"  src="http://ad.leadboltads.net/show_app_ad.js?section_id=838333320"></script>
</div>

This is also not working. 这也行不通。

If you have jquery available you can use this instead of this.href: 如果你有jquery可用,你可以用this而不是this.href:

$('script').attr('src');

function openwindow(){
            w=open($(this).find('script').attr('src'),'windowname','width=600,height=250,scrollbars,resizable,toolbar,status');
            with(w.document){
                write("<body>");
                write("This is a new window");
                write("</body>");
            }
            return false;
        }

This seems to work in a preliminary test, native javascript. 这似乎适用于初步测试,原生javascript。 This would be trivial w/ jquery as a previous poster has shown. 正如之前的一张海报所示,这对于jquery来说是微不足道的。

Use the URL as a parameter in the div tag "srcVal". 使用URL作为div标签“srcVal”中的参数。

<div class="box_padding " srcVal="http://ad.leadboltads.net/show_app_ad.js?section_id=838333320"  onClick="openwindow()" id="column-c-box-1">click me</div>

or this way: 或者这样:

<div class="box_padding "onClick="openwindow();" id="column-c-box-1" >
 <script type="text/javascript"  src="http://ad.leadboltads.net/show_app_ad.js?section_id=838333320" id="scriptTag"></script>
</div>

Your function slightly modified: 你的功能略有修改:

function openwindow(){
    var id = document.getElementById("column-c-box-1").getAttribute("srcVal");  
    //or
    // var scr = document.getElementsByTagName('script');
    //var id = scr[0].src; // use scr[scr - 1].src if have multiple scripts
               var w=open(id,'windowname','width=600,height=250,scrollbars,resizable,toolbar,status');
                with(w.document){
                    write("<body>");
                    write("This is a new window");
                    write("</body>");
                }
                return false;
            }

I used "with" because that is in your original code, but I'd caution against it. 我使用“with”因为这是你原来的代码,但我要小心它。 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/with?redirectlocale=en-US&redirectslug=JavaScript%2FReference%2FStatements%2Fwith https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/with?redirectlocale=en-US&redirectslug=JavaScript%2FReference%2FStatements%2Fwith

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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