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}});});