我想在按钮的JAVASCRIPT 中的点击事件的弹出窗口中打开一个表单。任何人都可以帮我这个吗??
答案 0 :(得分:7)
php是一种服务器端脚本语言。你可以用jquery来做。这里有一个演示jsfiddle显示模态弹出窗口。请仔细阅读。
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
答案 1 :(得分:0)
PHP是一种服务器端语言,不能在浏览器中运行。你会想看看javascript。如果您不熟悉javascript并希望快速获得基本功能,那么jQuery就是您的最佳选择!
$('button').on('click', function() {
alert('hello world');
});
一些有用的资源:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript http://learn.jquery.com/about-jquery/how-jquery-works/
答案 2 :(得分:0)
PhP无法打开弹出窗口...因为你需要使用html或javascript
如果你使用css框架更容易(比如bootstrap)
答案 3 :(得分:0)
您可以使用jQuery对话框。
<script>
<!-- Call jQuery Class -->
$('#opener').click(function() {
$('#dialog').dialog('open');
return false;
});
</script>
<div id = "dialog" title = "Search">
<form action = "" method = "post" id = "form" name = "form">
<!-- Contents -->
</form>
</div>
<input type = "button" name = "opener" value = "Open Me" id = "opener">
答案 4 :(得分:0)
您无法使用PHP打开弹出窗口。你可以用colorbox和fancybox来做到这一点。