jQuery Tools包含一个flashhembed API,它接受许多参数。是否有一个接受回调函数并在flash播放器加载事件的成功状态后触发?
playerdiv.flashembed(url+'/VIPlayer.swf','knds_player',300,250,'8.0.0',false,flashVars);
信息:official website。
注意:这可以在Google swfobject library中进行,如下所示:
swfobject.embedSWF(url+'/VIPlayer.swf','knds_player',300,250,'8.0.0',false,flashVars,callBack);
function callBack(event){
event after successful display of code
}
但我只需要使用flashhembed。你能帮帮我吗?
先谢谢:)
答案 0 :(得分:0)
flashembed方法有一个onFail
参数,它将回调作为一个值:
$("#flash").flashembed({
src: flashSWF,
version:[10,0],
id:"flashObj",
width: 500,
height: 300,
wmode: "opaque",
cachebusting: "false",
allowscriptaccess: "always",
api: "false",
scale: "noscale",
menu: "false",
onFail: flasherror("#flash")
})
它无意中触发了成功和失败。搜索,
字符以区分这两种状态。出错时,它会在版本字符串中显示为分隔符,例如11,0
而不是11.0
:
function flashError(domnode, newtext){
function failState()
{
if ($(domnode).html().search(/,/) !== -1) //player failed to load
{
newtext = $(domnode).html(); // store default error string
$(domnode).empty();
$(domnode).append(newtext.replace(/,/g,".")); // replace comma with period
if ($(domnode).hasClass("flashmsg") === false)
{
$(domnode).addClass("flashmsg"); // add class to custom error element
}
}
else
{
//success logic
}
}
// observer constructor
var cursor =
typeof window.hasOwnProperty === "function" ?
window.hasOwnProperty("WebKitMutationObserver")
? new WebKitMutationObserver(startValidation)
: window.hasOwnProperty("MutationObserver")
? new MutationObserver(startValidation)
: false
: false
;
//Use observer event if it exists
if (cursor)
{
//Bind observer event to text child of the dom node
cursor.observe($(domnode).get(0), { childList: true } );
return;
}
//Use mutation event as a fallback
else if (!!document.addEventListener)
{
$(domnode).get(0).addEventListener("DOMNodeInserted", failState, false);
}
//Use readystatechange event for legacy IE
else
{
$(domnode).get(0).addBehavior("foo.htc");
$(domnode).get(0).attachEvent("onreadystatechange", failState);
}
<强>参考强>