gpt4 book ai didi

javascript - 如何在一个文件中收集一些小的 javascript 片段

转载 作者:行者123 更新时间:2023-11-30 08:46:03 25 4
gpt4 key购买 nike

这是片段,我需要将它们放入一个通用文件中。我的想法是拥有一个包含所有这些片段的 extern .js 文件 我试图将所有代码复制到一个文件中,但它不起作用。是否可以有多个 $(document).ready(function ?

  <!-- Java Script //-->
<script type="text/javascript">
$(".collapse").collapse()
$('#menu').collapse({
toggle: false
})
</script> <!-- end of navigation -->


<script type="text/javascript">

var jump=function(e)
{
//prevent the "normal" behaviour which would be a "hard" jump
e.preventDefault();
//Get the target
var target = $(this).attr("href");
//perform animated scrolling

$('html,body').animate(
{
//get top-position of target-element and set it as scroll target
scrollTop: $(target).offset().top
//scrolldelay:1 seconds
},1000,function()

{
//attach the hash (#jumptarget) to the pageurl
location.hash = target;
});
}


$(document).ready(function()
{
//$('a[href*=#]').bind("click", jump);
$('a[href*=#]').not(document.getElementsByClassName("carousel-control")).bind("click", jump);
return false;
});

</script> <!-- // end of smooth scrolling -->


<!-- // Shows menu after 50px -->
<script type="text/javascript">

var fixed = false;

$(document).scroll(function() {
if( $(this).scrollTop() > 25 ) {
if( !fixed ) {
fixed = true;
$('#navigation').css({position:'fixed', display:'inline'});

}
} else {
if( fixed ) {
fixed = false;
$('#navigation').css({position:'relative', display:'block'});

}
}
});

</script>

你能写信告诉我我要怎么做吗?提前致谢。

最佳答案

首先,如果你想把这些片段放到一个单独的文件中,你应该删除所有的脚本标签

<script type="text/javascript"> <-- Remove this
Keep this
</script> <-- Remove this

关于javascript - 如何在一个文件中收集一些小的 javascript 片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21933954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com