bechte: URL-Encoding/Decoding

Beitrag lesen

<html>
<head><title>Testlinks</title></head>
<body>

<p>bei href...</p>
<a href="javascript:window.open('https%3A%2F%2Ftestserver%2Ftest.php%3Fparam1%3Dtest%26extparam2%3DHallo%2520Welt');">funktioniert</a>
<a href="javascript:window.open('https://testserver/test.php?param1=test&extparam2=Hallo%20Welt');">funktioniert nicht</a>

<p>während bei onclick...<p>
<a href="#" onclick="window.open('https%3A%2F%2Ftestserver%2Ftest.php%3Fparam1%3Dtest%26extparam2%3DHallo%2520Welt');">funktioniert nicht</a>
<a href="#" onclick="window.open('https://testserver/test.php?param1=test&extparam2=Hallo%20Welt');');">funktioniert</a>

</body>
</html>