search

Home  >  Q&A  >  body text

如何用js的open函数在同页面中打开iframe页面

我有一个页面A,里面有一个js函数,当我调用open打开另一个页面B时,如何使这个B页面能在A页面的iframe中打开?而不打开一个新页面

高洛峰高洛峰2928 days ago997

reply all(2)I'll reply

  • 代言

    代言2016-11-09 13:58:17

    function open(src) {
        var iframe = '';
        document.body.insertAdjacentHTML('afterbefore', iframe);
    }


    reply
    0
  • 三叔

    三叔2016-11-09 13:57:56

    afterbefore没有这个吧,, 看了只有 beforeBegin afterBegin  beforeEnd afterEnd

    reply
    0
  • Cancelreply