English 中文(简体)
Cross browser RUS5 iFrame
原标题:Cross browser HTML5 iFrame

现在,我有一个与完美无缺的特性相提并论,

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.google.com%2F&amp;layout=standard&amp;show_faces=false&amp;width=400&amp;action=like&amp;colorscheme=light&amp;height=35" seamless></iframe>

夫妇的特性

iframe {
  overflow: hidden !important;
  border: none !important;
  width: 400px;
  height: 35px;
  background-color: #cce0da;
  text-align: right;
  padding-left: 20px;
}

然后,因特网探索者 我对一些神职人员适用了一些缺陷。

$(function() {
  $( iframe ,  .ie )
    .attr( allowTransparency ,  true )
    .attr( frameBorder ,  0 )
    .attr( scrolling ,  no );
});

我最后说的是,在无必要边界的欧安会有一个透明的框架。

我的法典是否有问题? 也许我的人力部篡改了框架Border属性,没有在文件之后。 准备就绪?

最佳回答

在标记中添加“边界”特性......

<iframe frameborder="0"
问题回答

我想我给我的办公室,即把这部法典用在文字上。

摘录

<!--[if lt IE 9]>
 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> 
 <script src="myscrip"></script>
<![endif]-->

这是我的文字。

jQuery("iframe").each(function() {

  var copy = jQuery(this).clone();

  jQuery(copy).attr("frameborder",  0 );
  jQuery(copy).attr("scrolling",  no );

  jQuery(copy).replaceAll(this);

});

更可取的添加文字

jQuery(document).ready(function ()

小型问题几乎没有再现,无法以这种决心解决问题。

 iframe css=display:none
 add in my script function .show after replaceAll

如果你希望文件以超文本形式验证,你可以使用你原来的方法。 你们需要做几件事,才能在IE <工作。

(1) frame子,确定属性,然后装上集装箱。 或者从零件中形成一环元素。 学会刚刚赢得,让你确定之后的属性。

(2) 移除原机。

    $( #facebook-like iframe ).clone().attr({  frameBorder :  0 ,  allowTransparency :  true ,  scrolling :  no  }).appendTo( #facebook-like );
    $( #facebook-like iframe ).first().remove();




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签