将glyphicons添加到动态创建的表中

时间:2014-08-02 00:28:41

标签: javascript twitter-bootstrap twitter-bootstrap-3 imagebutton

我正在尝试将glyphicon添加到动态创建行的表中。我的问题是在我的外部js文件中添加图标。

function createRemoveRowButton(ArrayIndex) {
    var removeRowButton = document.createElement("BUTTON");
    var image = document.createElement("input");
    image.src = "example.jpg";
    image.type = "image";
    removeRowButton.appendChild(image);
    removeRowButton.onclick = function() {
    deleteRow(ArrayIndex);
    };

    return removeRowButton;
}

我看了getbootstrap.com下如何使用部分以及谷歌搜索,但到目前为止没有运气。

0 个答案:

没有答案