Che cos'è jQuery per Document.createElementNS()?Che cos'è jQuery per Document.createElementNS()?
function emleGraphicToSvg(aGraphicNode) {
var lu = function luf(aPrefix){
switch (aPrefix){
case 'xhtml': return 'http://www.w3.org/1999/xhtml';
case 'math': return 'http://www.w3.org/1998/Math/MathML';
case 'svg': return 'http://www.w3.org/2000/svg';
}
return '';
};
var svg = document.evaluate("svg:svg",
aGraphicNode, lu, XPathResult.FIRST_ORDERED_NODE_TYPE, null).
singleNodeValue;
$(svg).children().remove();
rect = document.createElementNS(lu('svg'), "rect");
rect.setAttribute("x", "35");
rect.setAttribute("y", "25");
rect.setAttribute("width", "200");
rect.setAttribute("height", "50");
rect.setAttribute("class", "emleGraphicOutline");
svg.appendChild(rect);
}
Il codice è un frammento semplificato da Emle - Electronic Mathematics Laboratory Equipment file JavaScript emle_lab.js.
La funzione di ricerca, luf()
, associa un riferimento completo a un nome di riduzione per lo spazio dei nomi nella stringa XPath e createElementNS()
. L'attuale svg:svg
si trova, rimosso e sostituito da un nuovo rettangolo.
Devo anche sapere cosa fa createElementNS(). Ecco la mia domanda correlata in svg-edit: http://code.google.com/p/svg-edit/issues/detail?id=574 – marknt15