Bootstrap table learning notes (1) for the first time

Source: Internet
Author: User

Bootstrap table learning notes (1) for the first time

Use the Bootstrap-table plug-in for the first time to record problems encountered during use.

| Introduce a CSS file

<link rel="stylesheet" href="bootstrap.min.css"><link rel="stylesheet" href="bootstrap-table.css"> 

| Introduce related libraries

We need to introduce Jquery library, bootstrap library, and bootstrap-table.js files

<script src="jquery.min.js"></script><script src="bootstrap.min.js"></script><script src="bootstrap-table.js"></script><-- put your locale files after bootstrap-table.js --><script src="bootstrap-table-zh-CN.js"></script>

| Enable the Bootstrap Table plug-in:

The official document provides two ways to enable the bootstrap-table plug-in:

1. data attributes:

<table data-toggle="table"> <thead> <tr>  <th>Item ID</th>  <th>Item Name</th>  <th>Item Price</th> </tr> </thead> <tbody> <tr>  <td>1</td>  <td>Item 1</td>  <td>$1</td> </tr> <tr>  <td>2</td>  <td>Item 2</td>  <td>$2</td> </tr> </tbody></table>

2. js:

// You only need to write the table label in HTML and set the id <table id = "table"> </table>
$('#table').bootstrapTable({ columns: [{ field: 'id',     title: 'Item ID' }, { field: 'name', title: 'Item Name' }, { field: 'price', title: 'Item Price' }], data: [{ id: 1, name: 'Item 1', price: '$1' }, { id: 2, name: 'Item 2', price: '$2' }]});

You can also obtain data through url

$ ('# Table '). bootstrapTable ({url: 'data1. json ', columns: [{field: 'id', // corresponding to the key value of the returned JSON data title: 'item id' // column name}, {field: 'name', title: 'item name'}, {field: 'price', title: 'item price'},]});

The above is all the content of this article. I hope it will be helpful for your learning and support for helping customers.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.