Why can't the layui progress bar be rendered?

王林
Release: 2021-03-10 11:07:52
forward
3508 people have browsed it

Why can't the layui progress bar be rendered?

Foreword:

layui progress bar rendering is divided into two situations, namely: static rendering and dynamic rendering.

Copy after login

With the above code alone, the progress bar value cannot be displayed.

(1) Static rendering

The progress bar depends on the element component. If it is not introduced, the progress bar will not be displayed.

layui.use('element', function () { var element = layui.element; });
Copy after login

The progress bar displays the result as follows:

Why cant the layui progress bar be rendered?

(Learning video sharing:html video tutorial)

(2) Dynamic rendering

When you need to dynamically change the progress value of the progress bar, the layui official website says that the element module provides the basic method element.progress().

First set the progress bar filter (lay-filter="demo"), and then you only need to execute this method in an event or statement to dynamically change the precision bar value. But for the percentage text displayed in the accuracy bar, users need to change it themselves.

element.progress('demo', '80%');
Copy after login

At this time the progress bar value changes:

Why cant the layui progress bar be rendered?

Related recommendations:layui tutorial

The above is the detailed content of Why can't the layui progress bar be rendered?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!