-
通用组件 定制组件查看全部
-
低层 框架查看全部
-
Web 组件 API查看全部
-
JS 组件查看全部
-
阻塞 回调查看全部
-
window.Tabview = Tabview查看全部
-
window.TabView 将希望暴露的数据暴露查看全部
-
css 前缀解决命名冲突查看全部
-
匿名函数解决命名冲突查看全部
-
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>弹窗</title> <link rel="stylesheet" href="css/base.css"/> <link rel="stylesheet" href="css/window.css"/> </head> <body> <input type="button" id="a" value="alert弹窗"/> <script type="text/javascript" defer async="true" data-main="scripts/main.js" src="scripts/require.js"></script> </body> </html>查看全部
-
require.config({ paths:{ jquery:'jquery-2.0.0' } }); require(['jquery','window'],function($,window){ $('#a').click(function () { new window.Window().alert({ title:'title', content : 'welcome', width : 300, height : 150, y : 50, hasCloseBtn : true, handlerAlertBtn : function () { alert("you click the button"); }, handlerCloseBtn : function () { alert("you close the box"); }, }); }); });查看全部
-
通用组件和定制组件查看全部
-
js分层方法查看全部
-
requirejs用法查看全部
-
JavaScript 细分查看全部
举报
0/150
提交
取消