在Javascript / jQUerycode中打印对话

时间:2014-02-20 23:14:19

标签: jquery css forms css3

您好我有一个PHP的查询表格,我想显示一个在提交按钮时显示错误的对话框。

目前我正在使用Windows Alert方法,但是它无法使用任何CSS,因此我想使用CSS3或Jquery在屏幕上打印对话框。

这是我的代码。

if( val == 'unemployed') 
{
alert("Unfortunately, we don't accept unemployed applications.");
    }

我看过这段代码,但现在确定如何将它与PHP集成,因为我将javascript放在上面的代码中,就会出错。

http://jqueryui.com/dialog/#modal

2 个答案:

答案 0 :(得分:0)

您需要将PHP变量传递给javascript。

为此,请在javascript块中打印:

<script>
val = '<?=$yourPhpVariable?>';
</script>

然后,您将能够根据PHP变量显示警报。

如果要设置警报样式,请使用twitter bootstrap或jquery ui或其他javascript UI库。

答案 1 :(得分:-2)

我通常使用https://jqueryui.com/dialog/来执行此操作。您可以根据ajax获取内容。

$( ".selector" ).dialog({
open: function( event, ui ) {
  //Do a ajax call to get the inform from the server
}
});