English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Implementation method of calculating a value and then embedding it into html in JavaScript

As shown below:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript Calculation Value</title>
</head>
<body>
	<p>Assuming y=5, calculate x=y+2, and display the result.</p>
	<button type="button" onclick="myFunction()">Click here</button>
	<p id="pid"></p>
	<script>
		function myFunction()
		{
			var y=5;
			var x=y+2;
			var demoP=document.getElementById("pid");
			demoP.innerHTML="x="+x;
		}
	</script>
</body>
</html>

That's all for the implementation method of embedding the calculated value into HTML using JavaScript that the editor has brought to you. I hope everyone will support and cheer for the Yell Tutorial~

You may also like