Tag: xml namespaces

Firefox添加了

编辑:由于ajax调用,这不会发生。 我改变它以使用来自TinyMCE组件的值来获得乐趣,我得到同样的东西。 content = tinyMCE.get(‘cComponent’).getContent(); //content at this point is test valueToDisplay = content; 如果我做: jQuery(selector).html(valueToDisplay); 我明白了: test 有没有人在使用Firefox 3.6.10和jQuery 1.4.2之前见过这个,我试图使用jQuery ajax调用的结果更改链接文本。 我得到了ajax调用的预期结果: function getValueToDisplay(fieldType){ var returnValue; jQuery.ajax({ type: “GET”, url: “index.cfm”, async:false, data: “fieldtype=”+fieldType, success:function(response){ returnValue = response; } }); return returnValue; } 如果我在此时检查值,我会得到预期值 console.log(returnValue) //output this –> Passport Photo 但是,当我使用jQuery(选择器).html将其插入现有锚点时 我明白了: Passport Photo […]