每次我点击特定按钮时都将注意力集中在iframe上

时间:2019-06-19 21:46:48

标签: javascript jquery html


每当我点击<button class="bold" >bold</button>时,我都希望专注于iframe
但只有一次
这是我的代码:
JavaScript

function iFrameStart() {
    iframe.document.designMode="On";
}
document.addEventListener("DOMContentLoaded",iFrameStart,false);
$(document).ready(function () {
    $(".bold").click(function () {
       iframe.document.execCommand('bold',false,null);
       document.getElementById("iframe").focus();
    });
});

HTML

<div class="container">
    <h1>Editor Demo</h1>
    <div class="button-wrapper">
        <button class="bold">B</button>
    </div>
    <label><textarea name="" id="" cols="30" rows="10"></textarea></label>
    <iframe id="iframe" name="iframe" ></iframe>

</div>

1 个答案:

答案 0 :(得分:1)

也许这是您的解决方案。

$('#iframe').contents().find('html').focus();

还有香草js

const frame = document.querySelector('#iframe').contentWindow;
frame.document.querySelector('body').focus();