Ajax load naar Textbox
{code]
Fout: $("input#blaat").val().load is not a function
Regel: 30
hoe moet het wel want de alert komt ook niet...?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script src="./Seriez/images/jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('input#haalop').click(function(){
$('input#blaat').val().load('./bezoek.htm');
alert('hoi');
return false;
});
});
</script>
<form>
<input id="blaat" />
<input type="button" id="haalop" />
</form>
[/]
<script type="text/javascript">
$(document).ready(function() {
$('input#haalop').click(function(){
$('input#blaat').val().load('./bezoek.htm');
alert('hoi');
return false;
});
});
</script>
<form>
<input id="blaat" />
<input type="button" id="haalop" />
</form>
[/]
Wat je wel kan doen is zoiets bij onclick:
Martin Essink op 22/08/2010 19:55:44:
ik wil een pagina laden naar een textbox, maar krijg deze error:
{code]
Fout: $("input#blaat").val().load is not a function
Regel: 30
hoe moet het wel want de alert komt ook niet...?
{code]
Fout: $("input#blaat").val().load is not a function
Regel: 30
hoe moet het wel want de alert komt ook niet...?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
<script src="./Seriez/images/jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('input#haalop').click(function(){
$('input#blaat').val().load('./bezoek.htm');
alert('hoi');
return false;
});
});
</script>
<form>
<input id="blaat" />
<input type="button" id="haalop" />
</form>
<script type="text/javascript">
$(document).ready(function() {
$('input#haalop').click(function(){
$('input#blaat').val().load('./bezoek.htm');
alert('hoi');
return false;
});
});
</script>
<form>
<input id="blaat" />
<input type="button" id="haalop" />
</form>
Waarom zo moeilijk? je kan toch ook icm php doen?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
$file = file_get_contents('bezoek.htm');
?>
<script language="javascript">
function alert()
{
alert('<?php echo $file; ?>')
}
</script>
<input type="button" onclick="alert()" value="alert me!" />
$file = file_get_contents('bezoek.htm');
?>
<script language="javascript">
function alert()
{
alert('<?php echo $file; ?>')
}
</script>
<input type="button" onclick="alert()" value="alert me!" />
Gewijzigd op 22/08/2010 22:51:09 door Dalando De Zuil
Dalando De Zuil op 22/08/2010 22:50:46:
Waarom zo moeilijk? je kan toch ook icm php doen?
Martin Essink op 22/08/2010 19:55:44:
ik wil een pagina laden naar een textbox, maar krijg deze error:
{code]
Fout: $("input#blaat").val().load is not a function
Regel: 30
hoe moet het wel want de alert komt ook niet...?
{code]
Fout: $("input#blaat").val().load is not a function
Regel: 30
hoe moet het wel want de alert komt ook niet...?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
<script src="./Seriez/images/jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('input#haalop').click(function(){
$('input#blaat').val().load('./bezoek.htm');
alert('hoi');
return false;
});
});
</script>
<form>
<input id="blaat" />
<input type="button" id="haalop" />
</form>
<script type="text/javascript">
$(document).ready(function() {
$('input#haalop').click(function(){
$('input#blaat').val().load('./bezoek.htm');
alert('hoi');
return false;
});
});
</script>
<form>
<input id="blaat" />
<input type="button" id="haalop" />
</form>
Waarom zo moeilijk? je kan toch ook icm php doen?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
$file = file_get_contents('bezoek.htm');
?>
<script language="javascript">
function alert()
{
alert('<?php echo $file; ?>')
}
</script>
<input type="button" onclick="alert()" value="alert me!" />
$file = file_get_contents('bezoek.htm');
?>
<script language="javascript">
function alert()
{
alert('<?php echo $file; ?>')
}
</script>
<input type="button" onclick="alert()" value="alert me!" />
Omdat het dan geen AJAX meer is...
@justin: als er dan een ' in $file zit heb je een probleem...
Tja maar dan moet je je datamodel goed op orde hebben. Ik heb er nooit problemen mee.