<script>
window.onload = function limt_emp(){
$(function () {
$(".domo").each(function () {
var maxwidth = 36;
if ($(this).text().length >= maxwidth) {
var b = $(this).children().is("a");
if (b) {
$(this).children().text($(this).children().text().substring(0, maxwidth) + "...");
} else {
$(this).text($(this).text().substring(0, maxwidth));
$(this).text($(this).text() + "...");
}
}
});
});
}
</script>
注意:引入js脚本<script src="js/jquery-1.7.2.min.js"></script>
window.onload = function limt_emp(){
$(function () {
$(".domo").each(function () {
var maxwidth = 36;
if ($(this).text().length >= maxwidth) {
var b = $(this).children().is("a");
if (b) {
$(this).children().text($(this).children().text().substring(0, maxwidth) + "...");
} else {
$(this).text($(this).text().substring(0, maxwidth));
$(this).text($(this).text() + "...");
}
}
});
});
}
</script>
注意:引入js脚本<script src="js/jquery-1.7.2.min.js"></script>