W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css"> <script src="//code.jquery.com/jquery-1.8.3.min.js"></script> <script src="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script> </head> <body> <div data-role="page" id="pageone"> <div data-role="content"> <a href="#" data-role="button" data-icon="arrow-l" data-iconpos="notext" data-theme="a">Left Arrow Icon</a> <a href="#" data-role="button" data-icon="arrow-r" data-iconpos="notext" data-theme="b">Right Arrow Icon</a> <a href="#" data-role="button" data-icon="arrow-u" data-iconpos="notext" data-theme="c">Up Arrow Icon</a> <a href="#" data-role="button" data-icon="arrow-d" data-iconpos="notext" data-theme="d">Down Arrow Icon</a> <a href="#" data-role="button" data-icon="plus" data-iconpos="notext" data-theme="e">Plus Icon</a> </div> </div> </body> </html>