试图在HTML页面中包含一个PHP脚本

时间:2016-08-16 09:32:59

标签: javascript php

我正在尝试将以下脚本集成到我的html页面中,但到目前为止我还不是很成功。有没有更清洁的方法来实现这一目标?

        <script>
            $(function() {
                $('input:checkbox').change(function() {
                //$('#console-event').html('Toggle: ' + $(this).prop('checked'))
                event.preventDefault();
                console.log("Change event: " + this.id + "..." + this.checked);                         
                doSomething(this.id);
                <?php require('common.php');
                $result = $db->add_news('titles');
                }?>                                     })
                }
            )
        </script>

0 个答案:

没有答案