欢迎各位兄弟 发布技术文章
这里的技术是共享的
ow to solve the " click to activate and use this control" prompt box
To fix the problem, please follow these steps:
1) Just below the last <object> in your HTML page,
insert the following Javascript:
<script type="text/javascript" src="fixit.js"></script>
2) Open a new document in Notepad or your HTML editor,
and copy & paste the following content into it:
fixit.js的代码
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
有虚线框 有 " click to activate and use this control" 的提示时
1)在最后一个<object>后 加上<script type="text/javascript" src="fixit.js"></script>
2)fixit.js的代码为(见本目录下的fixit.js)
也就是附件 1_20130425141607_96580388d2502e4d4e48117677eb0aff.txt
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}