美文网首页
点击元素(按钮等)定位至对应div

点击元素(按钮等)定位至对应div

作者: 五月气泡水 | 来源:发表于2021-08-17 11:09 被阅读0次

    1 var mydiv = document.getElementById(ID)
    mydiv.scrollIntoView()

    1. var oDiv = document.getElementById(ID);
      var t = document.createElement("input"); t.type = "text";
      oDiv.insertBefore(t, null);
      t.focus();
      oDiv.removeChild(t);

    相关文章

      网友评论

          本文标题:点击元素(按钮等)定位至对应div

          本文链接:https://www.haomeiwen.com/subject/grwbbltx.html