将 html 元素从 #div 移动到 body 语法问题
我正在尝试“克隆”一个元素并删除旧元素,我想这样做是因为我在 IE 中遇到 z-index 问题,并且将使用条件注释来完成此操作:
<!--[if lte IE 7]>
<script type="text/javascript">
$(document).ready(function() {
var callCenter = $('#callCenter').html();
alert(callCenter);
$('#callCenter').remove();
$('body').prepend("<div id='callCenter'>"+callCenter+"</div>");
});
</script>
<![endif]-->
问题是警报显示类似 (没有 "" ) 的内容
因此类名有点丢失
而不是
-编辑-
尝试使用
<!--[if lte IE 7]>
<script type="text/javascript">
$(document).ready(function() {
$('#callCenter').prependTo('body');
});
</script>
<![endif]-->
这是 Internet Explorer 的东西吗?
i am trying to 'clone' an element and delete old, i want to do this because I have a z-index problem in IE and will do it using conditional comments:
<!--[if lte IE 7]>
<script type="text/javascript">
$(document).ready(function() {
var callCenter = $('#callCenter').html();
alert(callCenter);
$('#callCenter').remove();
$('body').prepend("<div id='callCenter'>"+callCenter+"</div>");
});
</script>
<![endif]-->
the problem is that the alert shows something like (without "" )
So the clasenames are kind of lost
<span class=clasname>
instead of <span class="clasname">
-EDIT-
Trying with
<!--[if lte IE 7]>
<script type="text/javascript">
$(document).ready(function() {
$('#callCenter').prependTo('body');
});
</script>
<![endif]-->
is this a internet explorer thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效。
This should work.