| | |
| | | <script src="${ctxPath}/static/modular/system/tOrderTransfer/tOrderTransfer_info.js"></script> |
| | | <script> |
| | | var audioElements = document.querySelectorAll('audio'); |
| | | audioElements.forEach(function(audio) { |
| | | audio.addEventListener('play', function() { |
| | | console.log('Audio is playing:', this.id); |
| | | // 在这里添加你想要在播放时执行的代码 |
| | | this.pause(); |
| | | this.currentTime = 0; |
| | | |
| | | var recordState = $("#recordState").val(); |
| | | |
| | | |
| | | if (recordState == 2) { |
| | | audioElements.forEach(function (audio) { |
| | | |
| | | audio.addEventListener('play', function () { |
| | | console.log('Audio is playing:', this.id); |
| | | // 在这里添加你想要在播放时执行的代码 |
| | | this.pause(); |
| | | this.currentTime = 0; |
| | | }); |
| | | }); |
| | | }); |
| | | |
| | | } |
| | | </script> |
| | | @} |