我正在嘗試在我的php頁面中使用一些jQuery函數,這些函數用於wordpress插件。我已經使用下面的代碼導入了jquery api,但是我不知道如何編寫函數。將jQuery函數插入到php
<?php
echo "Custom Book Settings Page";
echo '<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>';
這將產生語法錯誤
<?php
$("#form1").submit(function() { $.post("customBook-index.php"); return false; alert ("submit form 1"); });
?>
爲什麼將JS嵌入到PHP中? – Jakub
在表單提交後保持在同一頁面http://stackoverflow.com/questions/3849968/php-contact-form-want-to-stay-on-my-site-after-send – Tom