大家好,又见面了,我是你们的朋友全栈君。
1、今天获取元素的html,而firefox却不支持如下代码
var elemstr = $(“#” + name)[0].outerHTML;
2、看到网上很多文章讨论Firefox如何使用outerHTML,给出的解决方案都颇为复杂。
如果使用jQuery1.3,则问题变得简单多了!
使用如下代码,IE和FF均支持!
var elemstr = $(“#” + name).parent().html();
希望本文能对你有所帮助!
wrong above
jQuery: outerHTML
The outerHTML property (IE only) could sometimes be very handy, especially if you’re trying to replace an element entirely. Brandon Aaron has very kindly given us aouterHTML plugin that does half the job as it doesn’t support replacements. The following code snippet fills in the blanks:
jQuery.fn.outerHTML = function (s) { |
return (s) |
? this .before(s).remove() |
: jQuery( "<p>" ).append( this .eq(0).clone()).html(); |
} |
To get the outerHTML value of an element do this…
$( '#myTag' ).outerHTML(); |
To replace #myTag entirely do this…
$( '#myTag' ).outerHTML( "<p>My brand new #myTag.</p>" ); |
Hope this helps someone
Update: There’s now a demo page.
转载于:https://www.cnblogs.com/lexus/archive/2010/12/08/1900093.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/148222.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...