在加载之前评估img src

时间:2017-06-23 17:07:38

标签: javascript jquery html ajax

我有一个将<img>写入html文件的函数。此文件的src是第三方应用,并且取决于src网址返回的内容,即出现的.gif

有没有办法将此设置为变量,评估返回的内容,然后根据返回的图片执行操作?

当前代码

 document.write(unescape('%3Cimg alt="chat" src="' + (('https:' == document.location.protocol) ? 'https:' : 'http:') + '//cbi.boldchat.com/aid/149585914643539/bc.cbi?cbdid=4329063963095645" border="0" id=' + bccbId + ' /%3E'));

期望的结果

var v = eval(unescape('%3Cimg alt="chat" src="' + (('https:' == document.location.protocol) ? 'https:' : 'http:') + '//cbi.boldchat.com/aid/149585914646039/bc.cbi?cbdid=4329063963095645" border="0" id=' + bccbId + ' /%3E'));

if(v.indexOf("clear") > -1)
 do x
else 
 do y

0 个答案:

没有答案