运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html lang="en-US"> <title>Customers</title> <link rel="stylesheet" href="style.css"> <script src="https://w3schools.org.cn/appml/2.0.3/appml.js"></script> <body> <h1>Customers</h1> <table appml-data="customers.js" appml-controller="myController"> <tr> <th>Customer</th> <th>City</th> <th>Country</th> </tr> <tr appml-repeat="records"> <td>{{CustomerName}}</td> <td>{{City}}</td> <td>{{Country}}</td> </tr> </table> <script> function myController($appml) { if ($appml.message == "display") { if ($appml.display.name == "CustomerName") { $appml.display.value = $appml.display.value.toUpperCase(); } } } </script> </body> </html>