2
當點擊菜單中的鏈接時,我需要加載一段html內容;一旦加載,CSS格式不能正常工作,我如何重新格式化(通過CSS重新設置樣式)加載的代碼? 我的代碼是:
$('a', mainMenu).click(function() {
ref = this.href;
$('#content').load(ref + ' #content' function() {
url = '../css/jquery-ui-1.8.2.custom.css';
//styling here
if (document.createStyleSheet) document.createStyleSheet(url);
else $('<link rel="stylesheet" type="text/css" href="'+url+'"/>').appendTo('head');
});
})
是另一種方式來加載和重新風格的HTML(插件也許)? 感謝adv'n。