如何使用kango框架中的myFunction单击使用html页面打开弹出窗口
$(document).ready(function () {
var $ = window.$.noConflict(true); // Required for IE
//creates the HTML element
var newNode = document.createElement('div')
newNode.innerHTML = '<button style="background-color : red;color: white;padding: 10px 20px;border-radius: 18px;border-color: #46b8da;">+</button>'
newNode.style.cssText = 'position:fixed;bottom:60px;right:10px;z-index:1800';
newNode.onclick = myFunction;
document.getElementsByTagName('body')[0].appendChild(newNode);
});
//onclick function
function myFunction() {
alert("myFunction")
}