我的应用程序在各种事件(例如登录/注销)期间出现闪烁/状态消息。如何Flash()
从标记中引用函数?
标记
<div id="flash">this is a flash message</div>
<script>
Flash.success(); // doesn't work. undefined.
</script>
Javascript
$(document).on('ready', function() {
Flash = new Flash();
function Flash() {
this.success = function() {
$('#flash').html('Success!');
}
}
});
如何从标记中调用函数?