Chrome扩展页面动态绑定JS事件提示错误
时间:2020-10-01 15:47:41|栏目:JavaScript代码|点击: 次
问题描述:
当开发Chrome扩展时,页面的popup.html中需要js的时候,直接将JS写在动态绑定JS事件会提示:
Refused to execute inline script because it violates the following Content Security Policy directive: “script-src ‘self' chrome-extension-resource:”..
解决办法:
在popup.html中引用外部的js文件动态绑定JS事件,例如:
<script type="text/javascript" charset="utf-8" src='test.js'></script>
test.js中:
var listbox = document.getElementById("showlist");
listbox.onclick=function(){
document.getElementById("player_sidebar").style.width = 100;
}
当开发Chrome扩展时,页面的popup.html中需要js的时候,直接将JS写在动态绑定JS事件会提示:
Refused to execute inline script because it violates the following Content Security Policy directive: “script-src ‘self' chrome-extension-resource:”..
解决办法:
在popup.html中引用外部的js文件动态绑定JS事件,例如:
复制代码 代码如下:
<script type="text/javascript" charset="utf-8" src='test.js'></script>
test.js中:
复制代码 代码如下:
var listbox = document.getElementById("showlist");
listbox.onclick=function(){
document.getElementById("player_sidebar").style.width = 100;
}
上一篇:js中回调函数的学习笔记
栏 目:JavaScript代码
下一篇:BootStrap智能表单实战系列(八)表单配置json详解
本文地址:http://www.codeinn.net/misctech/5802.html