admin管理员组文章数量:1026989
Whenever the jQuery is triggered I recieve the error 500 Internal Server Error
, does anyone have any ideas why the code below might be causing this?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ".dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="../meta/js/jquery-1.7.2.js"></script>
<script>
$(document).ready(function() {
$('#form1').submit(function(e){
e.preventDefault();
alert('I clicked it');
});
});
</script>
</head>
<body>
<form name="form1" method="post">
<button id="button">grab user data</button>
<select></select>
</form>
</body>
</html>
Whenever the jQuery is triggered I recieve the error 500 Internal Server Error
, does anyone have any ideas why the code below might be causing this?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="../meta/js/jquery-1.7.2.js"></script>
<script>
$(document).ready(function() {
$('#form1').submit(function(e){
e.preventDefault();
alert('I clicked it');
});
});
</script>
</head>
<body>
<form name="form1" method="post">
<button id="button">grab user data</button>
<select></select>
</form>
</body>
</html>
Share
Improve this question
edited Nov 18, 2015 at 13:43
pnuts
59.5k11 gold badges91 silver badges141 bronze badges
asked Apr 25, 2012 at 20:28
Brook JuliasBrook Julias
2,1059 gold badges29 silver badges44 bronze badges
4
- 1 Are you including jQuery? I don't see it added anywhere... – Jonathan Payne Commented Apr 25, 2012 at 20:31
- Why is the action empty in your form? It's likely it's going to try to post to / and if your page at / isn't handling your post then your server may throw your 500 error at this point. – Frank Hale Commented Apr 25, 2012 at 20:47
- @Jonathan Payne - No I have no included jQuery. I am new to the language and pletely forgot to do so. – Brook Julias Commented Apr 25, 2012 at 20:53
- @recursive - My server has been error free until I clicked the button, and the code is the exact copy on what was included with the question. If my question does not make sense to you how else would you have stated it? If the error occurs and only occurs when the button is clicked then wouldn't it stand to reason that the button and code corresponding to it are somehow involved in the issue. – Brook Julias Commented Apr 25, 2012 at 20:57
5 Answers
Reset to default 3I'm gonna guess its because of this variable:
<%=button.ClientID %>
There is nothing else (shown) that would signify anything else that would throw an error.
Can you clarify what you mean by 'jQuery is triggered'? Does that mean upon 'click' ? Or just by loading this page (I assumed the later)
I would guess that it's giving the error with this line:
$('#<%=button.ClientID %>')
Hard code a value instead and test it:
$('#buttonID')
In order to achieve what you want this will do the job:
<html>
<head>
<script src="https://ajax.googleapis./ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#myButton').on('click',function(){
alert("i clicked it");
});
});
</script>
</head>
<body>
<button id="myButton">Click Me!</button>
</body>
</html>
$(document).ready
is used to execute your code just after your page is rendered, then $('myButton')
will get any element with an id "myButton", then you will use the method "on" to attach any event you want, in this case you will want to choose the "click" event, then you should give an anonymous function where you will put the code you would like to execute on that action.
Your button is inside a tag with action="". This will cause a postback to "/". If your server doesn't handle this correctly, you will get an internal server error.
if you only want the alert to show, you can call preventDefault on the jQuery event object. Se example below:
$(document).ready(function() {
$('#<%=button.ClientID %>').click( function(e) {
e.preventDefault();
alert("i clicked it");
});
});
EDIT: Forget what i wrote above. It doesn't work. Instead, use the submit event on the form. Like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="@{'/public/javascripts/jquery-1.6.4.min.js'}" type="text/javascript" charset="${_response_encoding}"></script>
<script>
$(document).ready(function() {
$('#form1').submit(function(e){
e.preventDefault();
alert('I clicked it');
});
});
</script>
</head>
<body>
<form id="form1" method="post" action="">
<button id="button">grab user data</button>
<select></select>
</form>
</body>
</html>
you are attaching the submit
event to #form1
but your form doesn't have an id, only a name. You must select the form by name, $("form[name='form1']")
or give it an id of id="form1"
.
Whenever the jQuery is triggered I recieve the error 500 Internal Server Error
, does anyone have any ideas why the code below might be causing this?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ".dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="../meta/js/jquery-1.7.2.js"></script>
<script>
$(document).ready(function() {
$('#form1').submit(function(e){
e.preventDefault();
alert('I clicked it');
});
});
</script>
</head>
<body>
<form name="form1" method="post">
<button id="button">grab user data</button>
<select></select>
</form>
</body>
</html>
Whenever the jQuery is triggered I recieve the error 500 Internal Server Error
, does anyone have any ideas why the code below might be causing this?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="../meta/js/jquery-1.7.2.js"></script>
<script>
$(document).ready(function() {
$('#form1').submit(function(e){
e.preventDefault();
alert('I clicked it');
});
});
</script>
</head>
<body>
<form name="form1" method="post">
<button id="button">grab user data</button>
<select></select>
</form>
</body>
</html>
Share
Improve this question
edited Nov 18, 2015 at 13:43
pnuts
59.5k11 gold badges91 silver badges141 bronze badges
asked Apr 25, 2012 at 20:28
Brook JuliasBrook Julias
2,1059 gold badges29 silver badges44 bronze badges
4
- 1 Are you including jQuery? I don't see it added anywhere... – Jonathan Payne Commented Apr 25, 2012 at 20:31
- Why is the action empty in your form? It's likely it's going to try to post to / and if your page at / isn't handling your post then your server may throw your 500 error at this point. – Frank Hale Commented Apr 25, 2012 at 20:47
- @Jonathan Payne - No I have no included jQuery. I am new to the language and pletely forgot to do so. – Brook Julias Commented Apr 25, 2012 at 20:53
- @recursive - My server has been error free until I clicked the button, and the code is the exact copy on what was included with the question. If my question does not make sense to you how else would you have stated it? If the error occurs and only occurs when the button is clicked then wouldn't it stand to reason that the button and code corresponding to it are somehow involved in the issue. – Brook Julias Commented Apr 25, 2012 at 20:57
5 Answers
Reset to default 3I'm gonna guess its because of this variable:
<%=button.ClientID %>
There is nothing else (shown) that would signify anything else that would throw an error.
Can you clarify what you mean by 'jQuery is triggered'? Does that mean upon 'click' ? Or just by loading this page (I assumed the later)
I would guess that it's giving the error with this line:
$('#<%=button.ClientID %>')
Hard code a value instead and test it:
$('#buttonID')
In order to achieve what you want this will do the job:
<html>
<head>
<script src="https://ajax.googleapis./ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#myButton').on('click',function(){
alert("i clicked it");
});
});
</script>
</head>
<body>
<button id="myButton">Click Me!</button>
</body>
</html>
$(document).ready
is used to execute your code just after your page is rendered, then $('myButton')
will get any element with an id "myButton", then you will use the method "on" to attach any event you want, in this case you will want to choose the "click" event, then you should give an anonymous function where you will put the code you would like to execute on that action.
Your button is inside a tag with action="". This will cause a postback to "/". If your server doesn't handle this correctly, you will get an internal server error.
if you only want the alert to show, you can call preventDefault on the jQuery event object. Se example below:
$(document).ready(function() {
$('#<%=button.ClientID %>').click( function(e) {
e.preventDefault();
alert("i clicked it");
});
});
EDIT: Forget what i wrote above. It doesn't work. Instead, use the submit event on the form. Like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="@{'/public/javascripts/jquery-1.6.4.min.js'}" type="text/javascript" charset="${_response_encoding}"></script>
<script>
$(document).ready(function() {
$('#form1').submit(function(e){
e.preventDefault();
alert('I clicked it');
});
});
</script>
</head>
<body>
<form id="form1" method="post" action="">
<button id="button">grab user data</button>
<select></select>
</form>
</body>
</html>
you are attaching the submit
event to #form1
but your form doesn't have an id, only a name. You must select the form by name, $("form[name='form1']")
or give it an id of id="form1"
.
本文标签:
版权声明:本文标题:javascript - jQuery, getting "500 Internal Server Error" when running a jQuery statement - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1744362816a2093454.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论