我正在学习indexOf
javascript 中的函数,我只是有一个问题。你们有谁知道,我怎么能在弹出窗口http://www.youtube.com
中indexOf
打开它来播放 youtube 视频。不是在警报弹出窗口中,而是在浏览器的正常弹出窗口中。不管怎么说,还是要谢谢你!
就像这样的小例子,“MESSAGE”表示用户输入的内容:
function onCommentCommand(command) {
if(command.indexOf("MESSAGE") > -1) {
// Code for get urls and open in a popup??
}
return command;
}