admin/content/ks.content.aspx增加以下红色的,完美实现。
<script>
function GetKeyTags() {
var text = escape(jQuery('#Title').val());
if (text != '') {
jQuery('#KeyTags').val('请稍等,系统正在自动获取tags...').attr("disabled", true);
jQuery.get("../../plus/ajaxs.ashx", { a: "GetTags", text: text },
function(data) { jQuery('#KeyTags').val(unescape(data)).attr("disabled", false); });
} else { KesionJS.Alert('对不起,请先输入标题!',"jQuery('#Title').focus();"); }
}
$(function(){
$("input[name='defaultimg']").attr("checked",false);
});
</script>