我想刷新div,就像你按F5一样。我不想在div中放置新内容,我只是想重新加载它。有可能吗?
我不需要使用jquery / ajax从任何地方提取数据。
提前致谢。
答案 0 :(得分:0)
您可以使用jquery的getScript方法。
$.getScript( "script.js", function( data, textStatus, jqxhr ) {
console.log( data ); // Data returned
console.log( textStatus ); // Success
console.log( jqxhr.status ); // 200
console.log( "Load was performed." );
});
有关http://api.jquery.com/jQuery.getScript/的更多信息,请参阅
答案 1 :(得分:0)
不太清楚你想要什么,但你可以将脚本中的任何内容放入一个函数中,并在需要时随时调用它。它比整个刷新更容易(并且刷新不会重新加载脚本)。像这样:
function my_script() {
// contents of your script here...
}
my_script(); // this runs the script and you can use it from the console as well, after the page as loaded