将处于可编辑状态的网页的鼠标焦点放到所有body内容最后面的脚本如何写呀?
把这句话划分一下结构吧,要不看不懂

解决方案 »

  1.   

    object.scrollIntoView(bAlignToTop);bAlignToTop   Boolean that specifies one of the following values: true          Default. Scrolls the object so that top of the object is visible at the top of the window. false         Scrolls the object so that the bottom of the object is visible at the bottom of the window.  
     
    Example:var coll = document.all.tags("P");
    if (coll.length >= 5) {
        coll(4).style.textDecoration = "underline";
        coll(4).scrollIntoView(true);
    }