开发者

What are some simple JQuery buttons?

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>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜