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

javascript - Script run on server or client? - Stack Overflow

programmeradmin3浏览0评论

I have a thttpd server set-up which has the following html file. When I give address server-address/file-name.html on a standard web browser errors on the script is logged in error console of browser. I am confused about where the script is run actually? Is it on the client side or are the error messages just passed on to browser by server?

My requirement is to run script on a server to generate dynamic web pages upon client interaction.

<html> 
<head> 
<title>Entitled Document</title> 
<script language="JavaScript" > 
Function Java_Scriptfn()
{
    alert('Test'
}
</script> 
</head> 
<body> 
<input type="button" value="Script_Check" onclick="Java_Scriptfn()"> 
</body> 
</html>

I have a thttpd server set-up which has the following html file. When I give address server-address/file-name.html on a standard web browser errors on the script is logged in error console of browser. I am confused about where the script is run actually? Is it on the client side or are the error messages just passed on to browser by server?

My requirement is to run script on a server to generate dynamic web pages upon client interaction.

<html> 
<head> 
<title>Entitled Document</title> 
<script language="JavaScript" > 
Function Java_Scriptfn()
{
    alert('Test'
}
</script> 
</head> 
<body> 
<input type="button" value="Script_Check" onclick="Java_Scriptfn()"> 
</body> 
</html>
Share Improve this question asked May 9, 2012 at 12:28 ScarCodeScarCode 3,0943 gold badges20 silver badges32 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 3

That is purely client side code, so it runs on the client.

As far as I can tell, thttpd only supports server side programming via CGI.

JavaScript that is embedded in a HTML site (either inline or load from another file) is always executed client-side (that means in your browser).

If you want it to be executed, server-side, you need something like node.js.

It's client side code; any Javascript files included in an HTML page will run client-side (although they can talk to a server, that's different).

发布评论

评论列表(0)

  1. 暂无评论