最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Is there any difference in writing javascript in a single script block or multiple blocks - Stack Overflow

programmeradmin2浏览0评论

Is there any difference in writing javascript in a single script block or in individual blocks?

Writing script in a single block

<script type="text/javascript">
function funcA(){
//do something
}

function funcB(){
//do something
}
</script>

Writing script in a different block

Block 1:

<script type="text/javascript">
function funcA(){
//do something
}
</script>

Block 2:

<script type="text/javascript">
function funcB(){
//do something
}
</script>

Is there any difference in writing javascript in a single script block or in individual blocks?

Writing script in a single block

<script type="text/javascript">
function funcA(){
//do something
}

function funcB(){
//do something
}
</script>

Writing script in a different block

Block 1:

<script type="text/javascript">
function funcA(){
//do something
}
</script>

Block 2:

<script type="text/javascript">
function funcB(){
//do something
}
</script>
Share Improve this question asked Jan 25, 2011 at 1:42 NazmulNazmul 7,21812 gold badges53 silver badges64 bronze badges 2
  • 1 See this: stackoverflow.com/questions/3735406/… – Šime Vidas Commented Jan 25, 2011 at 1:47
  • @Šime Vidas, good reference.Helped me to learn new things. – Nazmul Commented Jan 25, 2011 at 2:32
Add a comment  | 

2 Answers 2

Reset to default 16

Functions declared in an earlier script block can only call functions in a later script block after the page loads.

Also, if an error occurs while the first script block is executing, the second block will still run.
If you put it all in one script, any code after the error will not run at all. (except for function declarations)

All this only applies to code that runs immediately.
Code that runs later (eg, an event handler) will not be affected.

Only performance difference. One block is slightly faster, but the code is the same.

发布评论

评论列表(0)

  1. 暂无评论