current location: Home > Download > JS effects > jQuery effects > jQuery mobile terminal select pickup time code
jQuery mobile terminal select pickup time code
Classify: JS effects / jQuery effects | Release time: 2018-03-02 | visits: 820 |
Download: 27 |
Latest Downloads
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
The most powerful brain 3
Odd Dust: Damila
Young Journey to the West 2
24 HoursReading Leaderboard
- 1 How can I integrate Spring Dependency Injection into my JavaFX application?
- 2 dgprpsetup.exe - What is dgprpsetup.exe?
- 3 A useState performance tip you may not have known
- 4 dl70are.dll - What is dl70are.dll?
- 5 Tinyint(2) vs Tinyint(1) in MySQL: What\'s the Difference in Display Width?
- 6 How to Import CSS Files into LESS Files?
- 7 How Can You Initialize an Array in Go Efficiently Without Loops?
- 8 How to Replace Values in a DataFrame Column Based on a Condition?
- 9 When to Use a Pointer vs. Value Reference for Embedded Fields in Go?
- 10 How to Filter an Array of Objects Based on a Nested Value Array?
- 11 dkres32.dll - What is dkres32.dll?
- 12 How Does std::shared_ptr Ensure Proper Destructor Calls During Cleanup?
- 13 How to Merge JavaScript Objects in an Array with Shared Keys?
- 14 dismcore.dll - What is dismcore.dll?
- 15 When to Use tinyint, smallint, mediumint, bigint, and int in MySQL?
Latest Tutorials
-
- Go language practical GraphQL
- 1928 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 3345 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 1753 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2565 2024-03-29
jQuery mobile terminal select pickup time code is a click pop-up select pickup time suitable for mobile mall products.
<style>
.test {
height: 40px;
line-height: 40px;
padding-left: 10px;
border-bottom: 1px solid #f2f2f2;
}
</style>
</head>
<body>
<ul>
<li class='test' id='test'>Select pickup time</li>
<li class='test' id="sj"></li>
</ul>
<script type="text/javascript">
$(document).ready(function(){
$('#test').on('click',function(){
//The number is a positive integer, 0 means it can be taken on that day
pickuptime.init(0,function(data){
console.log(data.split(" "));//Callback
$("#sj").html(data.split(" "));
});
});
});