本文介绍了浏览TAB键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在研究LAMP应用程序。在我的应用程序中,我使用 iframe
。我想通过键浏览我的应用程序。一切都好。但选项不会进入到 IFRAME
中。
是否有人对此有回答?
< html>
< body>
< div>
其他代码..
< / div>
< div id =main-content1style =position:absolute; float:none; top:80px; margin-left:170px; width:830px;>
< iframe onload =IfarmeOnload(); style =display:block; margin-left:none; margin-right:none; width:100%; height:100%; src =<?php echo $ home;?> id =rightMenuname =rightMenuframeborder =0>
< / iframe>
< / div>
< / body>
< / html>
解决方案
/ p>
请看看这个
关注
I'm working on LAMP application. In my application I'm using iframe
. I want to navigate through my application via key. all ok. But selection not going inside to the IFRAME
.
Is any one have answer for this
<html>
<body>
<div>
other codes..
</div>
<div id="main-content1" style="position:absolute;float:none;top:80px;margin-left:170px;width: 830px;">
<iframe onload="IfarmeOnload();" style="display:block; margin-left:none; margin-right:none; width: 100%; height: 100%;" src="<?php echo $home; ?>" id="rightMenu" name="rightMenu" frameborder="0">
</iframe>
</div>
</body>
</html>
解决方案
Hi found the soultion to this by SF by self
please look to this
Tab Index on divregards
这篇关于浏览TAB键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!