2

以下は、jquery の確認ボックスに表示される文字列です。

warningString = "<p style='margin-top: 12px;'>Please Verify the following URL is a valid Redirect URL.</p> <a href= " + redirURL + "' target='_blank'>" + redirURL + "</a><p style='margin-top: 8px;'> By clicking verify you are confirming this is a valid URL and will proceed with checkout. </p>";

変数 redirURL が欠落している場合、リンクに http:// を追加したいと思います。私はそれをどのように行うかについて少し迷っています。

ありがとうございました

4

1 に答える 1

7

それではどうですか:

if(redirURL.IndexOf('http') !== 0)
  redirURL = 'http://' + redirURL;
warningString = "<p style='margin-top: 12px;'>Please Verify the following URL is a valid Redirect URL.</p> <a href= " + redirURL + "' target='_blank'>" + redirURL + "</a><p style='margin-top: 8px;'> By clicking verify you are confirming this is a valid URL and will proceed with checkout. </p>";
于 2013-06-07T16:53:00.973 に答える