Heim > Artikel > Web-Frontend > JavaScript-Popup-Grundlagen_Javascript-Kenntnisse
confirm() bedeutet Bestätigungsfeld
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>confirm</title> </head> <body> <script> var con=confirm("do you like to study javascript?"); if (con) { document.write("I love javascript!"); } else{ document.write("I love other lanuages!"); } </script> </body> </html>
Eingabeaufforderung bedeutet Nachrichtenaufforderungsfeld
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>confirm</title> </head> <body> <script> var pro=prompt("what is your name?"); document.write(pro); </script> </body> </html>
window.open(uri,name,attr)
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>confirm</title> </head> <body> <a href="#" title="http://www.cnblogs.com/yuzheCyril/">click me</a> <script> var link=document.getElementsByTagName("a")[0]; link.onclick=function(){window.open(link.title,"blog","width=400px,height=400px");} </script> </body> </html>
window.close() schließt das Fenster
Das Obige ist der relevante Inhalt der vom Herausgeber eingeführten JavaScript-Popup-Grundlagen. Ich hoffe, er wird Ihnen hilfreich sein!