我正在使用这个Jquery
库graphdracula并且我有这样的观点:
html代码代码
<script>
$.fn.changeElementType = function (newType) {
var attrs = {};
$.each(this[0].attributes, function (idx, attr) {
attrs[attr.nodeName] = attr.nodeValue;
});
this.replaceWith(function () {
return $("<" + newType + "/>", attrs).append($(this).contents());
});
};
</script>
<script type="text/javascript">
$(function () {
$("#canvas").changeElementType("a");
// Now you probably want to add an href
$('a').attr('href', 'http://www.google.com');
});
</script>
我只想选择标题(F2,la fonction une ...)而不是孔div
元素。我试过了:
$("text").changeElementType("a");
和
$("tspan").changeElementType("a");
但我有这个观点(没有图表)。
那么这个错误的原因是什么?如何修复我的代码以选择标签并将其更改为超文本链接?