我有一个问题,如果您不介意,我希望您指导我解决它……在我的 HTML 源代码中,到处都有几段 css 代码。所以我决定放在一个名为 principal.css 的文件中,并在 head 部分执行以下操作
<link href="css/principal.css" rel="stylesheet" type="text/css" />
这非常有效!我的想法是对我的 HTML 中的 javascript 代码做同样的事情,但它没有奏效。这是其中之一:
$("[data-slider]")
.each(function () {
var input = $(this);
$("<span>")
.addClass("output")
.insertAfter($(this));
})
.bind("slider:ready slider:changed", function (event, data) {
$(this)
.nextAll(".output:first")
.html(data.value);
});
有什么特殊的方法可以做到这一点吗?我的目标是页面的代码量最少,我留下良好的缩进、文档和干净。您好,我将等待您的答复!请原谅我的英语...