$(document).ready(function () {
$("[data-role=content]").not("#ft").children().live({
mouseover: function () { $(this).css({ border: "1px solid gray" }); },
mouseleave: function () { $(this).css({ border: "0" }); } });
});
这是行不通的。没有显示边框。谁能告诉我我错在哪里?