我有一个登录弹出窗口,会弹出我网站的每个页面。我想要做的是,一旦用户点击提交,有一个JS文件,其中处理该请求的jQuery代码存在,并进行AJAX调用以验证数据库中的参数。
我可以弹出弹出框。表单加载。我在想我的jQuery代码将存在于一个单独的导入文件中,如下所示:
<script type="text/javascript" >
$(function()
{
$("input[type=submit]").click(function()
{
var some_params= $("#param").val();
var dataString = 'Some url to send to ajax';
if( params validated ok )
{
$('.success').fadeOut(200).hide();
$('.error').fadeOut(200).show();
}
else
{
$.ajax({
type: "POST",
url: "/problems/add_problem.php",
dataType: "json",
data: dataString,
success: function(json)
{
$('.success').fadeIn(200).show();
$('.error').fadeOut(200).hide();
}
});
}
return false;
});
});
</script>
所以我的问题是如何只在提交正确的表单时才调用它?该表单将有一些id =“some_name”,但我真的不明白如何只在调用该表单元素时才能执行此jQuery代码。
这是我打电话要在弹出窗口中显示的表单:
<?php
echo '<div id="login_div">
<form id="login_form" method="post" action="">
<p>
<label for="name"><span>Your Email:</span></label> <input type="text" name="email" />
</p>
<p>
<label for="name"><span>Your Password:</span></label> <input type="password" name="user_pass">
</p>
<p>
<input type="submit" value="Log In" />
</p>
</form>
</div>
<p>
<a href="http://www.problemio.com/auth/create_profile.php">Create Account</a> | <a href="http://www.problemio.com/auth/forgot_password.php">Reset Pass</a>
</p>
';
?>
以下是使用jQuery处理登录表单提交的problemio.js内容:
// javascript library
// login_form
$(function()
{
$("#login_form input[type=submit]").click(function()
{
console.log("test");
alert("1");
// var name = $("#problem_name").val();
// var problem_blurb = $("#problem_blurb").val();
// var dataString = 'problem_name='+ name + '&problem_blurb=' + problem_blurb;
// if(name=='' || problem_blurb == '')
// {
// $('.success').fadeOut(200).hide();
// $('.error').fadeOut(200).show();
/// }
// else
// {
// $.ajax({
// type: "POST",
// url: "/problems/add_problem.php",
// dataType: "json",
// data: dataString,
// success: function(json)
// {
// $('.success').fadeIn(200).show();
// $('.error').fadeOut(200).hide();
//
/// // Here can update the right side of the screen with the newly entered information
// //alert (json);
//
// new_string = "<h2>Most Recently Added Problems</h2>";
// Have to figure out how to make this work with the DOM.
// }
// });
// }
return false;
});
});
答案 0 :(得分:3)
您可以使用.submit()将处理程序附加到表单提交事件。首先,您需要通过ID
选择表单$("#some_form_id").submit(function() {
// the code you have in the click event above goes here.
});
答案 1 :(得分:3)
两件事。首先,当您将上面的代码放入单独的javascript文件中时,请务必删除&lt; script ..&gt;和&lt; / script&gt; HTML标记。
接下来,更改以下行:
$("input[type=submit]").click(function()
改为说:
$("#loginform input[type=submit]").click(function()
然后在&lt; form&gt;上设置id =“loginform”标签
答案 2 :(得分:1)
您可以指定要触发jquery的表单。 http://api.jquery.com/submit/
答案 3 :(得分:1)
如果您不确定,只需右键单击此网页并阅读其HTML代码。
<script type="text/javascript" src="some.js"></script>
而且,将函数绑定到form.submit要比提交按钮好得多。
$('formid').submit(function(){blablabla;return false;})
答案 4 :(得分:0)
如果您想在不使用ID的情况下处理页面上每次提交的点击事件,您可以始终在点击事件中使用this
关键字来查找发件人,然后找到父{{1} }。