我想将自己的字体样式添加到以下JS脚本中 - 我该怎么做?
<script>
$(function () {
$('#contact').validate({
submitHandler: function (form) {
$(form).ajaxSubmit({
url: 'process.php',
success: function () {
$('#contact').hide();
$('#contact-form').append("<p class='thanks'>Thanks! Your request has been sent.</p>")
}
});
}
});
});
</script>
答案 0 :(得分:1)
如果您只是想更改'thanks'类的字体,只需将其直接添加到该标记即可。
$('#contact-form').append("<p class='thanks' style='font-family: yourFont'>Thanks! Your request has been sent.</p>")
答案 1 :(得分:0)
您必须将样式表添加到头部
<link href="style.css" rel="stylesheet" type="text/css">
在样式表
中.thanks {
font-family: Arial;
}
答案 2 :(得分:0)
您最好通过css文件在类样式中设置字体。在您的css文件中:
.yourFontClass{
font-family:Arial;
}
你的成功回调:
$('#contact-form').append("<p class='thanks yourFontClass'>Thanks! Your request has been sent.</p>")
希望它对你有用。 :)