我需要添加一个谷歌分析事件到所有音频标签。
如果所有音频标记都属于特定的类,我可以这样做:
<script>
/* a test script */
$(function() {
// Every button with the audioClass class can execute the function.
$( "audioClass" ).on("click", (function() {
ga('send', 'event', 'audioclass', 'click
我正在尝试使用以下代码通过Web获取麦克风的音频示例:
<!doctype html>
<html>
<meta charset="utf-8">
<body>
<script>
function start() {
let button = document.getElementById("start");
button.disabled = true;
let audioCtx = new (window.AudioContext || wi