当前位置:Gxlcms > PHP教程 > php调用js的方法是什么?

php调用js的方法是什么?

时间:2021-07-01 10:21:17 帮助过:30人阅读

推荐:《PHP视频教程》

PHP调用JS

取值: 显示:values;

<html>
<body>
	<script type="text/javascript">
		var str = 'values';
	</script>
	<?php 
		echo "<script type=text/javascript>document.write(str)</script>";
	?>
</body>
</html>

调用函数(方法) 弹窗:9

<html>
<body>
	<script type="text/javascript">
		function add(){
			var x = 0;
			x = x + 9;
			alert(x);
		}
	</script>
	<?php 
		echo "<script type=text/javascript>add()</script>";
	?>
</body>
</html>

相关推荐:php培训

以上就是php调用js的方法是什么?的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行