我在预先存在的代码中看到了以下语法。
$("#offers").children().last().html(
$("#offers").children().last().html() + "!");
是否有更流畅的方法将一些文本附加到 HTML 中?还有更好的方法来重构以下内容吗?
$("#offers").children().last().html(
"!" + $("#offers").children().last().html());
这个怎么样?
$("#offers").children().last().html(
"!" + $("#offers").children().last().html() + "!");
我的建议如下,但我想看看是否有更整洁的东西。
var old = $("#offers").children().last().html();
var prefix = "";
var suffix = "";
$("#offers").children().last().html(suffix + old + prefix));