我正在处理的网站存在问题。 http://peterseabrook.com/galaxias2/
我有两个javascript脚本执行一些jQuery但是一次只能运行1个,具体取决于时钟或jPlayer无线电首先出现的代码。
我不知道该怎么做。
CODE:
jQuery(document).ready(function($){
$('#clock_sydney').jClocksGMT({offset: '+11'});
$('#clock_greece').jClocksGMT({offset: '+3'});
});
jQuery(document).ready(function($){
var stream = {
title: "Galaxias Radio",
mp3: "http://78.46.52.186:18272/;/stream/1"
},
ready = false;
$("#jquery_jplayer_1").jPlayer({
ready: function (event) {
ready = true;
$(this).jPlayer("setMedia", stream);
},
pause: function() {
$(this).jPlayer("clearMedia");
},
error: function(event) {
if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {
// Setup the media stream again and play it.
$(this).jPlayer("setMedia", stream).jPlayer("play");
}
},
swfPath: "http://peterseabrook.com/galaxias2/wp-content/themes/canvas/js/jplayer",
supplied: "mp3",
preload: "none",
wmode: "window",
useStateClassSkin: true,
autoBlur: false,
keyEnabled: true
});
$("#jplayer_inspector").jPlayerInspector({jPlayer:$("#jquery_jplayer_1")});
}); 先谢谢你们,
彼得。
答案 0 :(得分:0)
function twoFunctions(){ 所以firstFunction(); secondFunction();
}