從 PHP 執行 JavaScript:輸出函數呼叫指南
PHP 作為伺服器端語言,無法直接呼叫 JavaScript 函數。為此,您必須將函數呼叫嵌入到 PHP 產生的 HTML 字串中。
輸出JavaScript 函數呼叫
存在幾種在PHP 中嵌入JavaScript 函數呼叫的方法輸出:
echo '<script type="text/javascript">jsfunction();</script>';
// PHP code here ?> <script type="text/javascript"> jsFunction(); </script> <?php // PHP code here
$.get('wait.php', {}, function(returnedData) { document.getElementById("txt").innerHTML = returnedData; someOtherFunctionYouWantToCall(); }, 'text');
存在幾種>使用PHP Echo:
// in wait.php echo 'someOtherFunctionYouWantToCall();';
$.get('wait.php', {}, function(returnedData) { window[returnedData](); }, 'text');
以上是如何從 PHP 執行 JavaScript 函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!