0

我有一个打开模式窗口的 JavaScript 函数(href 链接),我想从那个函数/窗口将它发送到一个 PHP 页面(box.php),它有大约四个 PHP 函数;其中之一是检查其他三个功能的“check_box”。有没有办法做到这一点,或者 JavaScript 不可能/不支持?这就是我所拥有的:

PHP页面:

<a href="javascript:openModal()" title="" style="padding-right: 10px;">LEAVE</a>

PHP代码:

<?php
echo $class->box->check_box() ?>

JavaScript 函数:

function openModal()
    {

        $.modal({
            content: 
                    /* This where the content of the modal window goes */

            title: 'Outside the workplace',
            width: 300,
            scrolling: false,
            actions: {
                'Close' : {
                    color: 'red',
                    click: function(win) { win.closeModal(); }
                },
                'Center' : {
                    color: 'green',
                    click: function(win) { win.centerModal(true); }
                },
                'Refresh' : {
                    color: 'blue',
                    click: function(win) { win.closeModal(); }
                },
                'Abort' : {
                    color: 'orange',
                    click: function(win) { win.closeModal(); }

                }
            },

            buttons: {
                'Close': {
                    classes:    'huge blue-gradient glossy full-width',
                    click:      function(win) { win.closeModal(); }
                                    }
                                    },


            buttonsLowPadding: true
        });
    };
4

1 回答 1

0

创建一个可以进行插入的 php 页面。在该 PHP 中解析来自浏览器的参数并执行插入。然后输出一条消息。在 JavaScript 中显示指定的消息DIV- 类似这样(修复您的值并将参数传递给函数):

function setToDatabase() {
    jQuery(function($) {    
        $.ajax( {           
            url : "submittosql.php?valuetosubmit=NEWVALUE",
            type : "GET",
            success : function(data) {
                document.getElementById("YOURDIV").innerHTML=data;             
            }
        });
    });
}
于 2012-12-18T19:21:42.063 回答