CakePHP 提交按钮图像

发布于 2024-10-31 05:16:30 字数 873 浏览 4 评论 0原文

我正在尝试使用图像作为提交按钮,

<?php echo $this->Form->submit('/img/prelaunch/btn_signup.gif'); ?>

这就是我正在使用的代码。但图像无法加载图像存在于以下目录中

Webroot/img/prelaunch/

**更新**

HTML 生成的

<div class="submit">
<input type="image" src="/ginger/img/prelaunch/btn_signup.gif">
</div>

Webiste 基本 URL http://bakasura.in/ginger/

URL http://bakasura.in/ginger/users/signup

图片 URL http://bakasura.in/ginger/img/prelaunch/btn_signup.jpg

I am trying to use image for a submit button

<?php echo $this->Form->submit('/img/prelaunch/btn_signup.gif'); ?>

thats the code i am using. but the image is not able to load The image is present in the following directory

Webroot/img/prelaunch/

**Updated**

HTML Generated

<div class="submit">
<input type="image" src="/ginger/img/prelaunch/btn_signup.gif">
</div>

Webiste Base URL http://bakasura.in/ginger/

URL http://bakasura.in/ginger/users/signup

Image URL http://bakasura.in/ginger/img/prelaunch/btn_signup.jpg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

朦胧时间 2024-11-07 05:16:30

图像是jpg,您在提交按钮源代码中放入了gif。简单的错误:D

The image is a jpg, you have put a gif in the submit button source code. Simple mistake :D

雨落星ぅ辰 2024-11-07 05:16:30

另一个解决方案是:

<?php echo $form->submit('Sign up', array('type'=>'image','src' => '/img/prelaunch/btn_signup.gif'));  ?>

来自: http: //php-freelancer.in/2010/04/28/cakephp-how-to-make-image-submit-button/

Another solution is:

<?php echo $form->submit('Sign up', array('type'=>'image','src' => '/img/prelaunch/btn_signup.gif'));  ?>

from: http://php-freelancer.in/2010/04/28/cakephp-how-to-make-image-submit-button/

懒的傷心 2024-11-07 05:16:30

只需在css中创建一个类名并添加图像

Form->submit('submit',array('class'=>'show-image')); ?>

CSS

.show-image{
背景图像:url(../img/prelaunch/btn_signup.gif);背景重复:不重复;显示:块;宽度:30px;高度:30px 文本变换:大写;
}

Just create a class name in css and add the image

Form->submit('submit',array('class'=>'show-image')); ?>

CSS

.show-image{
background-image:url(../img/prelaunch/btn_signup.gif); background-repeat:no-repeat; display:block; width:30px; height:30pxtext-transform:capitalize;
}

长途伴 2024-11-07 05:16:30

我使用 app/webroot/img 下的图像创建了一个自定义按钮,该按钮使用内联样式来指定大小并将位置更改为中心

$options=array('type'=>'Make secure payment', 'type'=>'image', 'style'=>'width:200px; height:80px; display:block; margin-left:auto; margin-right:auto;');
echo $this->Form->submit('/img/axiaepaysecurebuttongray_med.png', $options);
echo $this->Form->end();

I created a custom button using an image in my under app/webroot/img that uses inline style for specifying size and changing the position to center

$options=array('type'=>'Make secure payment', 'type'=>'image', 'style'=>'width:200px; height:80px; display:block; margin-left:auto; margin-right:auto;');
echo $this->Form->submit('/img/axiaepaysecurebuttongray_med.png', $options);
echo $this->Form->end();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文