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">左箭头图标</a> <a href="#" data-role="button" data-icon="arrow-r">右箭头图标</a> <a href="#" data-role="button" data-icon="arrow-u">上箭头图标</a> <a href="#" data-role="button" data-icon="arrow-d">下箭头图标</a> <a href="#" data-role="button" data-icon="plus">加号图标</a> <a href="#" data-role="button" data-icon="minus">减号图标</a> <a href="#" data-role="button" data-icon="delete">删除图标</a> <a href="#" data-role="button" data-icon="check">检查图标</a> <a href="#" data-role="button" data-icon="home">首页图标</a> <a href="#" data-role="button" data-icon="info">信息图标</a> <a href="#" data-role="button" data-icon="back">后退图标</a> <a href="#" data-role="button" data-icon="forward">向前图标</a> <a href="#" data-role="button" data-icon="refresh">刷新图标</a> <a href="#" data-role="button" data-icon="grid">网格图标</a> <a href="#" data-role="button" data-icon="gear">齿轮图标</a> <a href="#" data-role="button" data-icon="search">搜索图标</a> <a href="#" data-role="button" data-icon="star">星形图标</a> <a href="#" data-role="button" data-icon="alert">提醒图标</a> </div> </div> </body> </html>