在HTML

时间:2016-11-02 10:37:10

标签: javascript html css textarea

主要目标:

创建一个能够实时预览HTML / CSS代码的网站。 LINK

更具体地说:

HTML / CSS代码可以在某些特定部分中由用户编辑。因此,实时预览中的代码不会来自文本区域,而是来自div。

我想要做的图片: enter image description here

到目前为止

进展: 所以,在我之前的问题中:

a)Question 1

b)Question 2

我试图找到一种方法,在从黑匣子中获取代码后使实时预览框工作。它不起作用,因为代码是在div标记中提供的,而不是textarea。我想补充一点,div代码中的代码使用xmp代码,因为某些部分可以从用户处理。

所以,我发现最好的解决方案是保留div标记,以便用户更改/更改代码,然后使用将用于实时的隐藏textarea预览。

主要问题:

如何在textarea中复制div的内容?我正在使用JS脚本(下面)将其复制到剪贴板中。是否可以将其复制到textarea内容?

执行此操作后,我将尝试使其无需复制(更新代码)按钮。 这是我的剧本:

    $(document).ready(function() {

  var highestBox = 0;
  $('.top').each(function() {
    if ($(this).height() > highestBox) {
      highestBox = $(this).height();
    }
  });
  $('.top').height(highestBox);

});

document.getElementById("copyButton1").addEventListener("click", function() {
    copyToClipboard(document.getElementById("copyTarget1"));
});

document.getElementById("copyButton2").addEventListener("click", function() {
    copyToClipboard(document.getElementById("copyTarget2"));
});

function copyToClipboard(elem) {
      // create hidden text element, if it doesn't already exist
    var targetId = "_hiddenCopyText_";
    var isInput = elem.tagName === "INPUT" || elem.tagName === "textarea";
    var origSelectionStart, origSelectionEnd;
    if (isInput) {
        // can just use the original source element for the selection and copy
        target = elem;
        origSelectionStart = elem.selectionStart;
        origSelectionEnd = elem.selectionEnd;
    } else {
        // must use a temporary form element for the selection and copy
        target = document.getElementById(targetId);
        if (!target) {
            var target = document.createElement("textarea");
            target.style.position = "absolute";
            target.style.left = "-9999px";
            target.style.top = "0";
            target.id = targetId;
            document.body.appendChild(target);
        }
        target.textContent = elem.textContent;
    }
    // select the content
    var currentFocus = document.activeElement;
    target.focus();
    target.setSelectionRange(0, target.value.length);

    // copy the selection
    var succeed;
    try {
          succeed = document.execCommand("copy");
    } catch(e) {
        succeed = false;
    }
    // restore original focus
    if (currentFocus && typeof currentFocus.focus === "function") {
        currentFocus.focus();
    }

    if (isInput) {
        // restore prior selection
        elem.setSelectionRange(origSelectionStart, origSelectionEnd);
    } else {
        // clear temporary content
        target.textContent = "";
    }
    return succeed;
}

干杯

1 个答案:

答案 0 :(得分:0)

我结合了很多我在网上找到的东西并使用这个脚本工作:

pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 1);
pivotTable.addRowLabel(1);

我在HTML代码中放了一个按钮。