如果,或者,而不是...... Javascript需要帮助

时间:2013-10-22 06:22:52

标签: javascript php youtube embed

嗨,大家好奇,如果有人可以帮助我,我很好奇。我通常不会在这里发帖,但我已经用尽所有的努力而无法解决这个问题。我这里有这个代码

function insertVideo(link)
{
if (link)
    {
    if(link.substring(0,29)!="http://www.youtube.com/watch?"){
        alert("You did not enter a valid URL!\r\nPlease try again.");
        return false;
        }
    else{
        link = link.replace(/watch\?/,"").replace(/\=/,"/");
        }
    var editpane = document.frmPost.addesc;
    var linkcode = "[EMBED]" + link + "[/EMBED]";

    editpane.focus();
    /*if (document.selection)
    {
        document.selection.createRange().text = linkcode;
    }
    else*/
    if (editpane.selectionStart || editpane.selectionStart == '0')
        {
        var selstart = editpane.selectionStart;
        var selend = editpane.selectionEnd;

        editpane.value = editpane.value.substring(0, selstart) + linkcode + editpane.value.substring(selend);
        editpane.selectionStart = selstart + linkcode.length;
        editpane.selectionEnd = editpane.selectionStart;
        }
    else
        {
        editpane.value = editpane.value + linkcode;
        }

    editpane.focus();
    }
}

我遇到的问题是当用户尝试在地址中使用https发布YouTube视频时。

我明白如果我改变

{
if(link.substring(0,29)!="http://www.youtube.com/watch?"){
    alert("You did not enter a valid URL!\r\nPlease try again.");
    return false;
    }

{
if(link.substring(0,30)!="https://www.youtube.com/watch?"){
    alert("You did not enter a valid URL!\r\nPlease try again.");
    return false;
    }

有效。但是当用户在没有https的情况下输入http地址时,它就不再起作用了。我想我可以将语句与OR组合,但这也不起作用,我有

 if(link.substring(0,29)!="http://www.youtube.com/watch?" || link.substring(0,30)!="https://www.youtube.com/watch?"){
    alert("You did not enter a valid URL!\r\nPlease try again.");
    return false;
    }
else{
    link = link.replace(/watch\?/,"").replace(/\=/,"/");
    }

所以基本上我需要它在两种情况下都可以工作(https和http)而不仅仅是其中一种。 我很难过,我没有专业的javascript,所以我确定它是一个小错误,但我花了太多时间试图自己解决这个问题。如果可以的话请帮忙。谢谢!

1 个答案:

答案 0 :(得分:1)

就像将OR(||)更改为布尔AND(&&)一样简单。

if (link.substring(0,29) !== "http://www.youtube.com/watch?" && link.substring(0,30) !== "https://www.youtube.com/watch?") {
    alert("You did not enter a valid URL!\r\nPlease try again.");
    return false;
}
// the else is unnecessary
// else {
link = link.replace(/watch\?/,"").replace(/\=/,"/");
// }

这与原始代码一样,如果您的网址为http://,它将无法通过https://检查(反之亦然),使条件为true,从而运行您的失败代码。将其更改为&&会修复它,因为现在要求URL无法使两个测试无效。

请注意:除非您是故意(或在其他特殊情况下),否则应使用===!==形式的相等测试(而不是==!=),因为如果它们属于不同类型而不是隐式转换类型,它们会自动失败。