我正在尝试在我的 php 页面中使用一些 jQuery 函数,这些函数用于 wordpress 插件。我已经使用下面的代码导入了 jquery api,但是我不确定如何编写函数。
<?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"); });
?>