Javascript警报消息包含URL

时间:2011-09-20 12:10:24

标签: javascript

我使用以下javascript函数:

<!-- Notifying message at the beginning of openning the website -->
    <script language="javascript" type="text/javascript">
        alert('Sorry!');
    </script>
    <!--End -->

我想在提醒消息中添加“(抱歉!)”之后的网址,但我不知道如何在javascript中将网址附加到消息本身。

6 个答案:

答案 0 :(得分:3)

尝试 -

alert('Sorry!'+document.URL);

演示 - http://jsfiddle.net/ipr101/Fg3eN/

答案 1 :(得分:2)

您想使用window.location对象获取当前值。

 alert('Sorry! ' + window.location.href);

答案 2 :(得分:1)

如果您的意思是网址:

<script language="javascript" type="text/javascript">
    var url = "http://www.google.es/";
    alert('Sorry!' + url);
</script>

如果您指的是链接,答案是无法

答案 3 :(得分:1)

这会将当前的URL放在警告框中。请注意,它不是可点击的超链接。

<script language="javascript" type="text/javascript">
        alert('Sorry! ' + window.location.href);
    </script>

答案 4 :(得分:1)

document.location.hrefdocument.URL,两者都有效:)

答案 5 :(得分:-2)