test();";?>" That’s it."/> test();";?>" That’s it.">
Home >Backend Development >PHP Problem >How to call php js method
php js calling method: first open the corresponding code file; then pass the PHP code "bd8076fa3420c0ee03726671d38e0df9test();fb9bd8a6e2f267adf9576be525fb03be" to call the js method.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer.
Examples of methods for js to call php and php to call js
1. JS method calls PHP files and obtains the value in php
Give a simple example to illustrate:
For example, use the following sentence in page a.html:
<script type="text/javascript" src="b.php?action=test"></script> <script type="text/javascript" > alert(jstext); </script>
There is such a piece of PHP code in b.php:
<? $action=$_GET['action']; //echo "var jstext='$action'"; //输出一句JS语句,生成一个JS变量,并赋颠值为PHP变量 $action的值 //echo "var jstext='aa'"; echo "var jstext="."'$action'"; ?>
When the a.html file is executed, The b.php file will be called, and the output of the b.php file will be executed as a JS statement, so a prompt box will pop up here with the value of the JS variable jstext, which is the value assigned to jstext in the PHP file.
Recommended: "PHP Video Tutorial"
Summary:
Use JS to call files in HTML to adjust PHP files, then the PHP file The output will be used as JS code by the calling page.
2. PHP calls the value in js
There is such a piece of code in the z.php page:
<script type="text/javascript" > var url="aaaa*"; </script> <? $key="<script type=text/javascript>document.write(url)</script>"; echo $key; ?>
3. PHP calls the method (function) in js
<script type="text/javascript"> function test() { var t1=3; t1 = t1+2; alert(t1); //return t1; } </script> <?php echo "<script type='text/javascript'>test(); </script>"; ?>
4. JS calls PHP variables
(1)
<?php $userId=100; ?> <script> var userId; userId=document.getElementByIdx_x_x_x("userId").value; alert (userId); </script> <input type="text" name="userId" id="userId" value="<?php echo $userId; ?>">
(2)
<?php $url = '变化的网址'; //定义变量 ?> <script type="text/javascript"> //js调用php变量 var ds ="<?php echo $url?>" ; //赋值 alert(ds); //输出效果 </script> 5 ------------------------------- <script language="JavaScript"> <!-- var Y=<?php echo date('Y')?>,M=<?php echo date('n')?>,D=<?php echo date('j')?>; --> </script>
6 The js and php you wrote call each other
1.php content:
<?php //echo "<script LANGUAGE='javascript'>alert('$php变量');</script>"; //最简单的php调用js //echo "<a href=#><img width=50 src='$fruit_pic_array[$i]' onMouseOver=’javascript:a();‘></a>"; //echo "<a href='3.php'>aaaa</a>"; //php中超链接 //echo "<script type='text/javascript' language='javascript'>phpmake('PHP建站学习笔记网');</script>"; //有时候需要在PHP执行过程中,需要调用JavaScript自定义函数(验证时出错) echo "function ok(msg){alert(msg);}"; ?> <HTML> <HEAD> <TITLE> php调用js文件的好办法</TITLE> </HEAD> <BODY> <!--js调用php中定义的js--> <scrīpt language=''javascrīpt'' type=''text/javascrīpt'' src=''1.php''></scrīpt> <scrīpt> ok("aaaaaa!"); </scrīpt> </script> </BODY> </HTML>
2.php content:
<!--js调用php--> <?php $userId=100; ?> <script> var userId; userId=document.getElementByIdx_x("userId").value; alert (userId); </script> <input type="text" name="userId" id="userId" value="<?php echo $userId; ?>"> <!--js调用php--> <?php if($_GET["action"]=="ok") { echo "I'm OK!"; } else { echo "I'm not OK!"; } ?> <SCRIPT Language = "JavaScript"> function func() { if(confirm("Are you OK with this?")) { this.location = "ok.php?action=ok"; } else { this.location = "ok.php?action=cancel"; } } </SCRIPT> <html> <head> </head> <body> <a href="#" href="#" onClick="javascript:func();">Please Click</a> </body> </html>
9fa62b6d7c69e1c6a7476292f48b7b88
<html> <head> <script> function isMail(PostString) { re = /\w*/ if (re.test(PostString)) { return true; } else { return false; } } function test() { if (isMail(<?php echo $email?>)) { document.write("<?php echo "N";?>"); } else { document.write('<?php echo 'Y';?>'); } } </script> </head> <body> <?php $email = "aa"; ?> <input type=button value=click onclick='test() '> </body> </html> <!--php中含有js代码--> <?php echo "<script language=javascript> function test(){ alert( 'hello '); } </script> "; ?> <input type=button value=click onclick='test() '>
The above is the detailed content of How to call php js method. For more information, please follow other related articles on the PHP Chinese website!