gpt4 book ai didi

php - jQuery、Ajax、PHP 函数

转载 作者:行者123 更新时间:2023-12-01 03:22:44 24 4
gpt4 key购买 nike

希望这是发布此内容的正确位置,并且有人可以提供帮助。

我有一个简单的应用程序,它使用 PHP GD 库以设置的字体显示文本在设定的大小。

http://www.ttmt.org.uk/

工作时,您可以选择文本和大小,然后按设置,它将显示在灰色框中。

在没有 Ajax 的情况下执行此操作时,我只是使用此 php 来回显 img 标签,并将 php 函数作为 src。

    echo '<img src="imageftt.php?text='.$myText.'&size='.$mySize.'&font='.$theFont.'">';

imageftt.php - PHP,这是创建图像的 GD 库函数。

    <?php

header('Content-Type: image/png');

$im = imagecreatetruecolor(1000, 200);

$gray = imagecolorallocate($im, 240, 240, 240);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 1000, 199, $gray);

$theText = $_POST['text'];
$theSize = $_POST['size'];
$theFont = $_POST['font'];

imagefttext($im, $theSize, 0, 15, 160, $black, $theFont, $theText);

imagepng($im);

imagedestroy($im);

?>

=

我的问题是我想使用 jQuery 和 Ajax 来完成此操作,这样页面就不必重新加载。

我有这个 jQuery 来收集表单中的值

    <script type="text/javascript" >
$(function(){
$('.button').click(function(){
var text = $('#text').val();
var size = $('#size').val();
var font = $('corbelb.ttf');
//alert(text);
//alert(size);
//
var dataString = 'text=' + text + 'size=' + size + 'font=' + font;
$.ajax({
type: 'POST',
url: 'imageftt.php',
data: dataString,
success: function(){
alert()

}
});
return false;
});
});
</script>

我的问题是我看不到如何将我的 php 函数与 jQuery 函数一起使用。

希望这是有道理的 - 任何帮助

HTML

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<title>untitled</title>
<link rel="stylesheet" href="style.css" type="text/css" />

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<script src="../js/jquery.easing.1.3.js" type="text/javascript"></script>

<script type="text/javascript" >
$(function(){
$('.button').click(function(){
var text = $('#text').val();
var size = $('#size').val();
var font = $('corbelb.ttf');
//alert(text);
//alert(size);
//
var dataString = 'text=' + text + 'size=' + size + 'font=' + font;
$.ajax({
type: 'POST',
url: 'imageftt.php',
data: dataString,
success: function(){
alert()

}
});
return false;
});
});
</script>

</head>

<body>
<div id="wrap">
<form action="" method="">
<select name="text" id="text">
<option value="<?php echo $_POST['text'];?>">Text</option>
<option value="ABCDEFGHJIKLMNOPQRSTUVWXYZ">ABCDEFGHIJKLMNOPQRSTUVWXYZ</option>
<option value="abcdefghijklmnopqrstuvwxyz">abcdefghijklmnopqrstuvwxyz</option>
<option value="0123456789">0123456789</option>
</select>
<select name="size" id="size">
<option value="<?php echo $_POST['size'];?>">Size</option>
<option value="72">72</option>
<option value="84">84</option>
<option value="96">96</option>
<option value="108">108</option>
</select>
<input type="submit" name="submit" class="button" value="Set &rarr;" />
</form>

<div id="top">

<?php
$theFont="corbelb.ttf";

if(!empty($_POST['submit'])){
$myText = $_POST['text'];
$mySize = $_POST['size'];
echo '<img src="imageftt.php?text='.$myText.'&size='.$mySize.'&font='.$theFont.'">';
}

?>

</div>

</div>
</body>
</html>

* 更新 *

在帮助下,我在这方面取得了进一步的进展,我正在研究类似此处建议的内容,但它仍然不起作用

使用下面的代码,所有值都会正确发出警报,但文本不会显示。生成一个灰色框,这让我认为它正在调用 PHP 并且返回结果,但值“var dataString = 'text=' + text + 'size=' + size + 'font=' + font;” php 没有发送或接收。

http://www.ttmt.org.uk/1/

<script type="text/javascript" >
$(function(){
$('.button').click(function(e){
e.preventDefault();
var text = $('#text').val();
var size = $('#size').val();
var font = 'corbelb.ttf';
//alert(text);
//alert(size);
//alert(font);
//
var dataString = 'text=' + text + 'size=' + size + 'font=' + font;
$("#top").find("img").remove();
$("#top").append("<img src='imageftt.php?"+dataString+"'/>");

});
});
</script>

最佳答案

你不能用ajax来做到这一点。您应该做的只是将图像 src 更改为新的 uri 以适应新的字体属性,它将下载新图像而无需重新加载整个页面。

类似于:

var text = $('#text').val();
var size = $('#size').val();
var font = $('corbelb.ttf');
var dataString = 'text=' + text + '&size=' + size + '&font=' + font;
$('#imageTagId').attr('src', 'imageftt.php?'+dataString);

关于php - jQuery、Ajax、PHP 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8416538/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com