var parseMedia = function (obj) { url = obj.attr('href'); if (url.indexOf('player.youku.com') != -1) { match = url.match(/sid\/(\w+)\/v\.swf/); if (match != null && match.length > 1) { obj.replaceWith('
'); } } else if (url.indexOf('tudou.com') != -1) { match = url.match(/tudou\.com\/v\/(\w+)\//); if (match != null && match.length > 1) { obj.replaceWith(''); } } else if (url.indexOf('video.qq.com') != -1 || url.indexOf('v.qq.com') != -1 || url.indexOf('static.video.qq.com')) { match = url.match(/vid=(\w+)/); if (match != null && match.length > 1) { obj.replaceWith(''); } } else if (url.indexOf('v.youku.com') != -1) { match = url.match(/v_show\/id_(\w+)\.html/); if (match != null && match.length > 1) { obj.replaceWith(''); } } };