为什么location.reload()在uiwebview中显示jQuery.js文件而不是html文件?

时间:2014-12-31 21:50:10

标签: javascript jquery ios uiwebview

当我点击某个按钮时,我正在运行此代码:

$(document).ready(function () {
    $(".ScoreNonClickedWordsButton").click(function () {
       $(this).parent().find("a.scoreThisWord").each(function () {
         var $this = $(this);
         this.click();
       });
   $("a.scoreThisWord").removeClass("scoreThisWord");
   location.reload(true);
   });
});

我希望页面在函数结束时重新加载。它不是重新加载html,而是显示jQuery.js文件的内容。为什么会这样?

0 个答案:

没有答案