我想在单击按钮时触发mail()
的{{1}}功能。
我尝试使用;
php
<button id="Next" type="button" onclick="executeShellScript();" >Next</button>
。请注意,按钮的类型必须始终是按钮,您不能为我的情况使用button
。
在javascript端
submit
和php
<script type="text/javascript">
function executeShellScript(){
<?php mail(); ?>
}
</script>