0

使用 JavaScript+jQuery 我正在操作图像宽度:

JAVASCRIPT

var imageWidth = .9 * $(window).innerWidth();
var imageHeight = .6 * $(window).innerWidth();

$("document").ready(function(){
    $(".class").css("width",imageWidth);
    $(".class").css("height",imageHeight);
});

但我也用它来给我的提交按钮一个 PHP 健壮的图像

CSS

 form input[type=submit]{
     background: url("xyz.png") no-repeat center center;
     width: 90px;
     height: 60px;
     border: none;
     color: transparent;
     font-size:0;
 }

(有关这种 css 技术的更多信息,请访问 www.suburban-glory.com/blog?page=140)

我的问题不是很困难,但我找不到我需要的信息。如何[type=submit]在 JavaScript 中调用表单输入,以便可以操作用于提交按钮的图像?(正如您在示例中看到的那样,我只是调用 CSS 类)

4

1 回答 1

3
$('form input[type="submit"]').css('background-image', 'url("xyz.png")');
于 2012-11-06T00:38:20.507 回答