帮助...?的
嘿,我在onClick调用上有以下功能:
function addComment() {
jQuery.noConflict();
jQuery('head').append('<link rel="stylesheet" media="screen" type="text/css" href="colorbox/colorbox-images.css" />'); //this doesn't add correctly.
jQuery.fn.colorbox({inline:false, href:'boxes/add-comment.html'}); //or it could be this line not importing the page
return false;
};
但是,STYLESHEET附加行似乎没有正确初始化。 (注意:可能是“box / add-comment.html”中的内容未添加) - 屏幕截图如下:
答案 0 :(得分:0)
你试过吗,
var link = $('<link>');
link.attr({
'rel':'stylesheet',
'media':'screen',
'type':'text/css',
'href':'colorbox/colorbox-images.css'
});
jQuery('head').append(link);
答案 1 :(得分:0)
原来这是CSS中的Float问题,有些事情不想玩球。