我有一个打开模式窗口的 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
});
};