我喜欢这个jquery脚本加载页面加载而不是加载点击。 我更改了以下内容:
<script>
$('.error').on('click', function(){
$(this).notifyMe(
'bottom', // Position
'error', // Type
'Lorem Ipsum Text', // Title
'Lorem Ipsum is simply dummy text of the printing', // Description
200 // Velocity of notification
2000 // (optional) Time of delay to close automatically
);
});
</script>
为:
<script>
$(document).ready(function() {
$(this).notifyMe(
'bottom', // Position
'error', // Type
'Lorem Ipsum Text', // Title
'Lorem Ipsum is simply dummy text of the printing', // Description
200 // Velocity of notification
2000 // (optional) Time of delay to close automatically
);
});
</script>
但它没有加载告示者。 它基于以下脚本:http://www.jqueryrain.com/?koLHvt8W
有人可以告诉我我做错了吗?
答案 0 :(得分:1)
应该是:
$(document).ready(function () {
$('.error').notifyMe(
'bottom', // Position
'error', // Type
'Lorem Ipsum Text', // Title
'Lorem Ipsum is simply dummy text of the printing', // Description
200 // Velocity of notification
2000 // (optional) Time of delay to close automatically
);
});