HTML5 onclick 按钮不起作用
Posted
技术标签:
【中文标题】HTML5 onclick 按钮不起作用【英文标题】:HTML5 onclick button does not works 【发布时间】:2016-11-09 17:44:06 【问题描述】:我有这个 html 文件,它必须在 onclick 下调用一个函数,但是不执行任何操作,也不发出警报。我不知道这个按钮发生了什么。该按钮不起作用是“id = botonRegistro”(任何按钮都有效)。
<!DOCTYPE html>
<html>
<head>
<!-- <script type="text/javascript" src="js/jquery-2.0.2.js"></script> -->
<!-- <script type="text/javascript" src="js/jquery.mobile-1.4.5.min.js"></script> -->
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/functions_v1.js"></script>
<script type="text/javascript" src="js/objects_v1.js"></script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport"
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>KirolAPP</title>
</head>
<body>
<div data-role="page" id="registerPage">
<div data-role="header" align="center">
<img src="img/kirolLogo.png"> <br>
</div>
<div data-role="content" align="center" id="registerContent">
<form id="formRegistro">
<br> <input type="text" id="idNombreReg" style="border: 1;" placeholder="Nombre"><br>
<input type="text" id="idSec" style="border: 1;" placeholder="1ºApellido"><br>
<input type="text" id="idLast" style="border: 1;" placeholder="2ºApellido"><br>
<input type="password" id="idClaveReg" style="border: 1; color: orange;" placeholder="Clave"><br>
<input type="password" id="idClaveRegRep" style="border: 1; color: orange;" placeholder="Confirmar clave"><br>
<input type="email" id="idEmail" style="border: 1;" placeholder="Email"><br>
<button type="button" id="botonRegistro" onclick="alert('Registrado!')">Registrarse</button>
</form>
</div>
<div data-role="content" id="back" style="text-align: center; display: none" >
<a href="index.html" id="botonBack">Volver</a>
</div>
<br>
</div>
</body>
</html>
我试过了
onclick="alert('hello');"
而且我认为 onclick 不需要前缀,所以...我不知道这段代码发生了什么,因为不调用 javascript 函数。
编辑:这是我的 CSS
body
background-image: url("../img/fondoIndex.png");
background-size: inherit
background-repeat: no-repeat;
background-position: center center;
用解决方案编辑:
我没有在 default-src 中添加“inline-unsafe”,如下所示:
https://ssl.gstatic.com 'unsafe-eval' '不安全的内联'; style-src 'self' 'unsafe-inline';媒体源 *">
【问题讨论】:
你打开控制台检查错误了吗? 警报对我有用:jsfiddle.net/56uje6bu 也许您在标头中加载的所有 JavaScript 都在抛出错误? 您的 onclick 工作正常。您是否已经有任何事件绑定到此按钮?控制台有错误吗? 我们可以看看你的css吗?可能是由于元素重叠,按钮实际上没有被点击。 我的控制台没有显示任何内容。我在 Eclipse ADT 上。 【参考方案1】:我不知道为什么,但内容安全策略阻止了它。 当我删除此元数据时,一切正常:
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
【讨论】:
这行得通,但我不知道为什么。它必须与添加的内容一起使用。 我在 Chrome 中得到的错误是Refused to execute inline event handler because it violates the following Content Security Policy directive: "default-src 'self' data: gap: https://ssl.gstatic.com ". Either the 'unsafe-inline' keyword, a hash ('sha256-...'), or a nonce ('nonce-...') is required to enable inline execution. Note also that 'script-src' was not explicitly set, so 'default-src' is used as a fallback.
【参考方案2】:
将元标记更新为:
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *">
我将'unsafe-inline'
添加到default-src
指令以允许onClick()
执行。
【讨论】:
以上是关于HTML5 onclick 按钮不起作用的主要内容,如果未能解决你的问题,请参考以下文章