通过jQuery更新路径后,SVG Image变黑

时间:2014-02-27 22:06:21

标签: jquery node.js svg cheerio

我有以下HTML代码

<div>
    <a id="cover"></a>
    <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 510 680">
    <rect x="0" y="0" fill="#000007" width="510" height="680"/>
    <image width="510" height="680" xlink:href="../images/MSRCover.png" transform="translate(0 0)" />
    </svg>
</div>

我正在尝试使用jQuery更改图像的路径,图像变黑。

$ = cheerio.load(data);
$('image').each(function()
{
    var $img    = $(this);
    $(this).attr('xlink:href','My PATH').html();
});

我正在使用node.js和模块cheerio。

由于

1 个答案:

答案 0 :(得分:0)

jquery .attr方法不了解命名空间。例如,使用普通的DOM setAttributeNS

$(this)[0].setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', "My PATH");