jQuery Version

summernote 富文本编辑器上传本地图片

拈花ヽ惹草 提交于 2021-01-04 15:37:25
jQuery version: 1.12.4 Bootstrap version: 3.3.7 summernote 是基于 jQuery 和 Bootstrap 的轻量级富文本编辑器 所以在使用summernote之前必须先引入 jquery 和 Bootstrap <!-- css --> <link rel="stylesheet" href="static/plugins/Bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="static/plugins/summernote/summernote.css"> <!-- javascript --> <script src="static/plugins/jquery/jquery-1.12.4.min.js"></script> <script src="static/plugins/Bootstrap/js/bootstrap.js"></script> <script src="static/plugins/summernote/summernote.js"></script> html 部分 <textarea id="summernote"></textarea> javascript代码 let summer = $('#summernote

是否有链接到Google API上的“最新”jQuery库? [重复]

拈花ヽ惹草 提交于 2020-10-04 16:03:57
问题: This question already has an answer here: 这个问题在这里已有答案: Latest jQuery version on Google's CDN 5 answers 谷歌CDN 5答案的 最新jQuery版本 I use the following for a jQuery link in my <script> tags: 我在 <script> 标签中使用以下内容作为jQuery链接: http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js Is there a link to the "latest" version? 是否有“最新”版本的链接? Something like the following (which doesn't work): 像下面这样的东西(不起作用): http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js (Obviously not necessarily a great plan to link your code to potentially changing libraries but useful in development.)

jQuery滚动到元素

六月ゝ 毕业季﹏ 提交于 2020-04-05 22:04:09
问题: I have this input element: 我有这个 input 元素: <input type="text" class="textfield" value="" id="subject" name="subject"> Then I have some other elements, like other text inputs, textareas, etc. 然后,我还有其他一些元素,例如其他文本输入,文本区域等。 When the user clicks on that input with #subject , the page should scroll to the last element of the page with a nice animation. 当用户使用 #subject 单击该 input 时,页面应滚动到页面上具有精美动画的最后一个元素。 It should be a scroll to bottom and not to top. 它应该是滚动到底部而不是顶部。 The last item of the page is a submit button with #submit : 页面的最后一项是带有 #submit 的 submit 按钮: <input type="submit" class="submit" id=