admin管理员组文章数量:1345582
Is there a way to make this ajax-response run on document.ready, AND onClik without copy/paste the code in another function?
$(document).ready(function() {
var ads = $('#ads').val();
function ajax(){
$.ajax({
url: "./services/finn_bilder.php",
type:"POST",
data:{ads: ads},
success:function(data){
$('#AdsDiv').html(data);
}
I want this to run onClick $('#id').click(function()); and the way its working now, without copy/paste?
Is there a way to make this ajax-response run on document.ready, AND onClik without copy/paste the code in another function?
$(document).ready(function() {
var ads = $('#ads').val();
function ajax(){
$.ajax({
url: "./services/finn_bilder.php",
type:"POST",
data:{ads: ads},
success:function(data){
$('#AdsDiv').html(data);
}
I want this to run onClick $('#id').click(function()); and the way its working now, without copy/paste?
Share Improve this question asked May 26, 2013 at 19:00 Mr.TurtleMr.Turtle 3,0906 gold badges30 silver badges50 bronze badges 3-
What's wrong with using another named function, and calling it both in
.click
and in.ready
? That's the only sane approach – Benjamin Gruenbaum Commented May 26, 2013 at 19:02 -
There's always
$(document).on('ready click', ajax);
but there are issues with.on('ready')
– adeneo Commented May 26, 2013 at 19:06 - Make sure to see the differences between the answers: var ads = $('#ads').val(); is ran only once in the example LightStyle gave, I made sure it will accure every time the ajax funciton is called. – Adam Tal Commented May 26, 2013 at 19:20
2 Answers
Reset to default 3Just make sure you can reuse the javascript function you've created:
$(document).ready(function() {
// Will occur at document load
ajax();
// Will occur at every click
$(document).click(function() { ajax(); });
}
function ajax(){
var ads = $('#ads').val();
$.ajax({
url: "./services/finn_bilder.php",
type:"POST",
data:{ads: ads},
success:function(data){
$('#AdsDiv').html(data);
});
}
Just call it inside document ready and bind it to document.click.
$(document).ready(function() {
var ads = $('#ads').val();
function ajax(){
$.ajax({
url: "./services/finn_bilder.php",
type:"POST",
data:{ads: ads},
success:function(data){
$('#AdsDiv').html(data);
}
});
}
ajax();
$(document).click(function() {
ajax();
});
}
本文标签: javascriptRun a function on documentready and onClickStack Overflow
版权声明:本文标题:javascript - Run a function on document.ready and onClick - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743812897a2543397.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论