我有一个livescore网站,我正在尝试制作该网站的小工具,以便在其他网站上展示它的一部分,我面临的问题是如何将我的代码(JavaScript和CSS)与主机代码隔离开来我的小工具的网站。 我使用这样的“匿名函数”:
(function() {
// Localize jQuery variable
var jQuery;
/******** Load jQuery if not present *********/
if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.8.3') {
var script_tag = document.createElement('script');
script_tag.setAttribute("type","text/javascript");
script_tag.setAttribute("src",
"http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js");
if (script_tag.readyState) {
script_tag.onreadystatechange = function () { // For old versions of IE
if (this.readyState == 'complete' || this.readyState == 'loaded') {
scriptLoadHandler();
}
};
} else { // Other browsers
script_tag.onload = scriptLoadHandler;
}
// Try to find the head, otherwise default to the documentElement
(document.getElementsByTagName("head")[0] || document.documentElement).appendChild(script_tag);
} else {
// The jQuery version on the window is the one we want to use
jQuery = window.jQuery;
main();
}
/******** Called once jQuery has loaded ******/
function scriptLoadHandler() {
// Restore $ and window.jQuery to their previous values and store the
// new jQuery in our local jQuery variable
jQuery = window.jQuery.noConflict(true);
// Call our main function
main();
}
/******** Our main function ********/
function main() {
jQuery(document).ready(function($) {
/******* Load CSS *******/
var css_link = $("<link>", {
rel: "stylesheet",
type: "text/css",
href: "http://localhost/aaa/widget/widget.css"
});
css_link.appendTo('head');
var txt;
txt='<div id="wrapper">';
txt=txt+'<ul class="tabs">';
txt=txt+'<li id="fixtures_tab"><a href="#fixtures">All</a></li>';
txt=txt+'<li id="live_tab"><a href="#live">Live</a></li>';
txt=txt+'<li id="finished_tab"><a href="#finished">finished</a></li>';
txt=txt+'<li id="program_tab"><a href="#program">Program</a></li>';
txt=txt+'<li id="postpond_tab"><a href="#postpond">Postpond</a></li>';
txt=txt+'<li id="selected_tab"><a id="f" href="#fav">Selected (0)</a></li>';
txt=txt+'</ul>';
txt=txt+'<div class="tab-container">';
txt=txt+'<div id="fixtures" class="tab-content"><script type="text/javascript">get_All_Today_Matches();</script></div>';
txt=txt+'<div id="live" class="tab-content"><script type="text/javascript"></script></div>';
txt=txt+'<div id="finished" class="tab-content"><script type="text/javascript"></script></div>';
txt=txt+'<div id="program" class="tab-content"><script type="text/javascript"></script></div>';
txt=txt+'<div id="postpond" class="tab-content"><script type="text/javascript"></script></div>';
txt=txt+'<div id="fav" class="tab-content"><script type="text/javascript"></script></div>';
txt=txt+'</div>';
txt=txt+'</div>';
$('#widget-container').html(txt);
});
}
})(); // We call our anonymous function immediately
一切都很顺利JQuery但不适用于CSS(CSS文件已加载并且工作正常但是一些托管网站CSS正在影响我的CSS)我无法控制托管网站CSS而且我认为我有通过使用匿名函数很好地隔离了我的代码,但为什么我的CSS受到网站原始CSS的影响???请帮助我,我已经在这一点上待了一会儿
答案 0 :(得分:2)
我知道两种可能的解决方案。
一种是通过iframe
将您的代码嵌入到其他网站上。除非其他网站specifically writes something在iframe中修改您的CSS,否则您的CSS不会发生冲突。但默认情况下,这不会是一个问题。
否则,您必须将MyWidget_
添加到所有类/ ID名称的开头,以防止与其他网站发生冲突。
答案 1 :(得分:0)
我的解决方案是将一个类my-widget-wrapper
添加到顶部元素,在这种情况下,我认为它是标识为wrapper
的元素。
然后将我的样式文件中的所有css规则指定为类my-widget-wrapper
的子项。
例如:要将a
元素的颜色更改为绿色,而不是css规则
a {
color: green;
}
我会用
.my-widget-wrapper a {
color: green
}
Side Note :开发小部件时,永远不要在小部件元素中使用固定ID,因为它会限制您在页面中只有一个小部件实例。不使用id
属性来标识元素,而是使用自定义class
属性