我想创建一个像“ MessageBox
”这样的类。在调用该Show()
函数时,我将传递所需的参数。喜欢:
MessageBox.Show(
{
str : "Are you sure?",
onYes : function(){
//do something
},
onNo: function(){
// Do another stuff
}
});
我尝试了什么:
var MessageBox = {
Show : function(){ // I stuck here
}
}
让我们假设在节目confirm()
中调用了 JavaScript 函数。