棋盘图像标签变为图像

时间:2017-10-12 16:34:14

标签: javascript jquery chessboard.js

我在我的项目中使用chessboard.js,但是当我将棋盘渲染到我的项目中时,它会将<img />标记转换为<images />

请看一下图片.. enter image description here 我现在能做什么 ???

这里是代码截图。 enter image description here

2 个答案:

答案 0 :(得分:1)

  $(document).ready(function(){
    $('images').each(function(){
        $(this).replaceTag('<img>', true);
    });
  });

答案 1 :(得分:0)

如果您想要替换现有标签,可以执行以下操作:

$('images').each(function(){
     $(this).replaceWith('<img>' + $(this).html() +'</img>')
});