jquery get 函数获取响应的一部分
$.get('ajax/test.html', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
这里 get 函数获取 test.html 并插入到结果类 div 中。 但我的要求是仅获取 test.html 的某些部分(即 blah blah )并插入到当前页面的某些 div 中。
$.get('ajax/test.html', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
here get function fetches test.html and inserts in result class div.
but my requirement is to fetch only some part of test.html(ie. blah blah ) and insert into some div of current page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
$.load
来加载页面片段Use
$.load
to load page fragments将一些文本放入 test.html 中作为“边界”,然后您可以使用 JavaScript 将其分成两部分。例如:
test.html
JavaScript
Put some text into test.html that will serve as the "boundary", and then you can use JavaScript to split it into its two parts. For example:
test.html
JavaScript