我希望只能获取div的内容,而不是加载整页。
我目前的js是:
$(document).ready(function(){
$("#myform").validate({
debug: false,
rules: {
name: "required",
email: {
required: true,
email: true
}
},
messages: {
name: "Please let us know who you are.",
email: "A valid email will help us get in touch with you.",
},
submitHandler: function(form) {
$.post('file.php', $("#myform").serialize(), function(data) {
$('#results').html(data);
});
}
});
});
我在提交表单时加载整个页面,我希望它只加载一个div的内容。
答案 0 :(得分:0)
请参阅以下链接,了解如何使用JavaScript访问DIV元素:
Get content of a DIV using JavaScript
How can get the text of a div tag using only javascript (no jQuery)
):