开发者

What are some simple JQuery buttons?

开发者 https://www.devze.com 2023-02-03 09:26 出处:网络
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 c

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

精彩评论

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