編輯代碼:
查看結果 »
試一試 - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
<
a
href
="javascript:void(0);"
>
Useless link
<
/a
>
<
/p
>
<
p
>
<
a
href
="javascript:void(document.body.style.backgroundColor='red');"
>
Click me to change the background color of body to red.
<
/a
>
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p> <a href="javascript:void(0);"> Useless link </a> </p> <p> <a href="javascript:void(document.body.style.backgroundColor='red');"> Click me to change the background color of body to red. </a> </p> </body> </html>