首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery ui iframe 中 正题切换

2012-08-28 
jquery ui iframe 中 主题切换iframe外部中注册切换主题插件的时候,响应onselect事件,然后刷新iframe内部

jquery ui iframe 中 主题切换
iframe外部中注册切换主题插件的时候,响应onselect事件,然后刷新iframe内部的页面,因为themeswitcher插件是根据一个叫jquery-ui-theme的cookie来记住主题的,所以同一个域下,有共同效果。iframe内外都要写入以下代码,只不过内部的不用响应onselect事件

<script type="text/javascript" src="js/themeswitchertool.js"></script>



$(document).ready( function() {// THEME SWITCHER$('#switcher').themeswitcher({initialText:'外观风格', buttonPreText:'外观风格',onSelect : function(){$('#ifr')[0].contentWindow.location.reload(); //内部的iframe页面重新加载,来更改theme}});});


热点排行