例如,我正在尝试设置我想要嵌入我网站的Google日历。我使用以下Object标记来绕过默认的iFrame:
<object data="https://calendar.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0&height=600&wkst=2&bgcolor=%23FFFFFF&ctz=America%2FNew_York" style="border-width:0" width="100%" height="600" frameborder="0" scrolling="no">
<embed src="https://calendar.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0&height=600&wkst=2&bgcolor=%23FFFFFF&ctz=America%2FNew_York" style="border-width:0" width="100%" height="600" frameborder="0" scrolling="no"> </embed>
Error: Embedded data could not be displayed.
</object>
我已经厌倦了对Google日历样式的研究以及围绕php的所有想法,jQuery似乎没什么帮助。
我想我是否可以在我的网站上获取日历代码,然后在我的html页面末尾使用jQuery,如下所示:
<script type="text/javascript">
$(document).ready(function() {
$("object .st-bg-today").css({"background":"red"});
});
然后造型可能会产生影响,但我认为我的理论存在缺陷。
任何帮助将不胜感激,谢谢。