Morphing Buttons Concept Inspiration for revealing content by morphing the action element. Examples: Login/Signup Terms Info Overlay Subscribe Share Video Player Sidebar Settings Click one of the buttons below to see a modal dialog: Pea hors
一、当需要注入大段的HTML标签到页面中时,应该使用服务器渲染(从服务器加载HTML标签)
该方法将模板放置于服务器中使用XMLHttpRequest对象来获取外部标签(如多页应用)
function loadDialog(name, oncomplete) {
var xhr = new XMLHttpRequest();
xhr.open('get', '/js/dialog/'+name, true);
xhr.onreadystatechange = function () {