1. 程式人生 > >瀏覽器未安裝flash外掛提示實現程式碼

瀏覽器未安裝flash外掛提示實現程式碼

在開發中使用到jquery.uploadify.js,這個外掛有使用到flash檔案,以前舊版本的谷歌瀏覽器會自動載入flash,升級之後就不會載入了;每次要新增資料,才發現數據填完了,附件卻上傳不了,然後開始了複雜的找啟動flash的地方,啟用之後頁面又要重新載入,剛提交的資料就全部沒了,算了重新填吧,誰讓自己沒記性了;

現有程式可以直接讓你訪問系統就直接指導是否開啟了flash:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>flash播放外掛提示</title>
</head>
<body>
	<!--banner開始-->
	<div class="banner">
	  <div class="con">
		<embed width="1000" height="115" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" quality="high" src="top1.swf"></embed>
		<noscript>
		請安裝flash播放外掛!
		</noscript>
	  </div>
	</div>
	<!--banner結束-->

</body>
</html>

效果如下: