JavaScript अलर्ट बॉक्स में एक नई लाइन जोड़ने के लिए, "\n" का उपयोग करें:
alert("Line One\n Line Two"); उदाहरण
आप निम्न कोड को चलाने का प्रयास कर सकते हैं जावास्क्रिप्ट में अलर्ट बॉक्स में एक नई लाइन जोड़ें:
लाइव डेमो
<html>
<head>
<script>
<!--
function Warn() {
alert ("This is a warning message!\nThis is a new line.");
document.write ("This is a warning message!");
}
//-->
</script>
</head>
<body>
<p>Click the following button to see the result: </p>
<form>
<input type="button" value="Click Me" onclick="Warn();" />
</form>
</body>
</html>