Javascript:
wie bekommt man die URL der aktuellen Webseite
Wie kann man mit javascript oder jQuery die aktuelle
Web-URL ermitteln? in Javascript oder jQuery
Lösung:
In Javascript:
Code Beispiel
<a href="#" title="Link and get Followers 1+2" onclick="copy_Share_Button();"><div class="share" title="https://Readdy.Net/Notes/"> <img src="~/images/Ico/icoShare.png" class="share-img" /></div></a>
<script>
function copy_Share_Button() {
//----< copy_Share_Button() >----
alert(window.location.href);
//----</ copy_Share_Button() >----
}
</script>
|