You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
$(function() {
|
|
|
|
$("#usersid").blur(
|
|
function() {
|
|
$("#usersid_msg").empty();
|
|
var name = $(this).val();
|
|
if (name == "" || name == null) {
|
|
$("#usersid").after("<span id='usersid_msg' style='color: red'>用户不能为空</span>");
|
|
}
|
|
});
|
|
$("#articleid").blur(
|
|
function() {
|
|
$("#articleid_msg").empty();
|
|
var name = $(this).val();
|
|
if (name == "" || name == null) {
|
|
$("#articleid").after("<span id='articleid_msg' style='color: red'>新闻不能为空</span>");
|
|
}
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('#sub').click(function(){
|
|
var usersid = $("#usersid").val();
|
|
var articleid = $("#articleid").val();
|
|
$("#usersid_msg").empty();
|
|
$("#articleid_msg").empty();
|
|
if (usersid == "" || usersid == null) {
|
|
$("#usersid").after("<span id='usersid_msg' style='color: red'>用户不能为空</span>");
|
|
return false;
|
|
}
|
|
if (articleid == "" || articleid == null) {
|
|
$("#articleid").after("<span id='articleid_msg' style='color: red'>新闻不能为空</span>");
|
|
return false;
|
|
}
|
|
});
|
|
$('#res').click(function() {
|
|
$("#usersid_msg").empty();
|
|
$("#articleid_msg").empty();
|
|
});
|
|
|
|
});
|