我有一个问题,也许有更好的方法在php旁边做这个但是我把这个想法扔到那里......让我知道你的专家意见。
显示我要求的内容的图片:Example of Design
最好的方法是什么?或者是否有预先制作的东西,可以根据我的要求进行定制?
答案 0 :(得分:3)
以下是Javascript中的一个示例。
<强> HTML 强>:
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
Enter Name:
<input id="who" type="text" />
<input id="submit" type="button" class="btn" value="Submit" />
<div id="certificate" style="text-align:center;display:none;">
<h1>Certificate of Merit</h1>
<h3>Presented To:</h3>
<h4 id="name"></h4>
<hr />
<h2>Congratz</h2>
</div>
<强>的Javascript 强>:
$('#submit').click(function() {
$('#name').html($('#who').val());
$('#certificate').fadeIn();
});
JSFiddle :http://jsfiddle.net/6SWVV/1/