当我追加
我需要在我的脚本中添加蜂鸣声。每次必须有声音的时候我都会加上。
$("#beep").html("<embed src='button-16.wav' hidden='true' autostart='true' loop='false' id='bp' />")
但当我添加时,我失去了焦点。
我尝试通过以下方式再次集中注意力。
1)
$("#beep").html("<embed src='button-16.wav' hidden='true' autostart='true' loop='false' id='bp' />");
$("#txt").focus();
2)
$("#beep").html("<embed src='button-16.wav' hidden='true' autostart='true' loop='false' id='bp' />");
$("#bp").ready(function(){
$("#txt").focus();
});
但是第一种和第二种方法都不起作用。
HTML 代码。
<div id="beep"></div>
<input type="text" id="txt" />
那么,如何在蜂鸣声后保存文本框的焦点呢?
I need to add beep in my script. I add every time, when sound must be.
$("#beep").html("<embed src='button-16.wav' hidden='true' autostart='true' loop='false' id='bp' />")
But when I add , my lost focus.
I tried to focus it again in the following ways.
1)
$("#beep").html("<embed src='button-16.wav' hidden='true' autostart='true' loop='false' id='bp' />");
$("#txt").focus();
2)
$("#beep").html("<embed src='button-16.wav' hidden='true' autostart='true' loop='false' id='bp' />");
$("#bp").ready(function(){
$("#txt").focus();
});
But neither first nor second way works.
HTML code.
<div id="beep"></div>
<input type="text" id="txt" />
So, how can I save focus of textbox after beep?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试设置一个时间间隔来查看 wav 文件的末尾是否抓住焦点吗?
我仅建议将此用于故障排除目的......而不是作为实际修复。执行 .wav 可能比运行下一个进程(即您的 focus() )花费更长的时间
can you try setting an interval to see if the end of the wav file is grabbing the focus?
I am only recommending this for troubleshooting purposes ... not as an actual fix. It might be taking longer to execute the .wav than it does to run the next process which is your focus()
我找到了完全不同的方法来解决这个问题。
我编写了 *.swf,当 JavaScript 调用其函数时,它会发出蜂鸣声。
动作脚本代码。
JavaScript 代码。
I found quite different way to solve this problem.
I've wrote *.swf, which play a beep, when JavaScript call its function.
ActionScript code.
JavaScript code.