<script>
$(document).ready(function() {
$(".guess_box").click( function() {
$(".guess_box p").remove();
var discount = Math.floor((Math.random()*5) + 5);
var discount_msg = "<p>Your Discount is "+discount+"%</p>";
$(this).append(discount_msg);
$(this).unbind("click");//关键 事件 是对象
});
});
</script>
$(document).ready(function() {
$(".guess_box").click( function() {
$(".guess_box p").remove();
var discount = Math.floor((Math.random()*5) + 5);
var discount_msg = "<p>Your Discount is "+discount+"%</p>";
$(this).append(discount_msg);
$(this).unbind("click");//关键 事件 是对象
});
});
</script>
本文展示了如何使用JavaScript在网页上动态生成折扣信息,通过点击按钮触发事件,计算并显示随机折扣百分比。
1548

被折叠的 条评论
为什么被折叠?



