With a simple JQuery command, it will turn a regular button into something开发者_JAVA百科 awesome.
Take a look at jQuery UI Button. You can turn many form controls/elements into pretty, themed button controls like this:
$("#aLink").button();
$(":checkbox").button();
// more in the docs
Try jQuery UI Button
<script>
$(function() {
$( "button, input:submit, a" ).button();
});
</script>
精彩评论