编写html标签而不是" text"在javascript文件中

时间:2015-03-11 16:59:46

标签: javascript jquery html

我正在使用生成滑块的bxslider carousel,作为我的设置的一部分:

    ...
    nextText:"Next",
    prevText:"Prev",
    ...

因此滑块中的下一个按钮的文本为“Next”(与前一个按钮相同)。但是我想要添加带图像的跨度,而不是文本。如何更改它以显示<span class="glyphicon glyphicon-search"></span>而不是“下一个”或“上一个”文本?

提前致谢

The website link

2 个答案:

答案 0 :(得分:1)

我已经通过link解决了这个问题。对于这个微弱的问题,我很抱歉。我已经添加了这样的内容;

nextText: '<span class="glyphicon glyphicon-search"></span>'

答案 1 :(得分:0)

如果要将标记添加到现有HTML标记,例如ID为myDiv的div:

getElementById('myDiv').innerHTML = '<span class="glyphicon glyphicon-search"></span>';

getElementById('myDiv').appendChild('<span class="glyphicon glyphicon-search"></span>');