0

我最近在网页上放置了 UniformJS (http://uniformjs.com/) 脚本,以设置 SELECT 和 UPLOAD 字段的样式。我将脚本设置为影响这些字段,但是,现在这些字段已经完全消失了。这是我设置脚本的方式:

<script type="text/javascript" charset="utf-8">
  $(function(){
    $("input, select").uniform();
  });
</script>

这是网页(请注意缺少 Resume 和 Country 字段,以及一些单选框):http: //goo.gl/aJKv1

我进入 UniformJS 样式表并将所有文件路径更改为绝对文件,以确保这不是链接错误 - 但仍然没有运气。

我对 Javascript/jQuery 仍然非常陌生,但我已经尝试了我能想到的一切。

有没有人遇到过这个问题?

4

1 回答 1

0

缺少 css。

这是控制台输出: Failed to load resource: the server responded with a status of 404 (Not Found) http://www.mcfaddengavender.net/newmg/contact/careers/www.mcfaddengavender.net/newmg/wp-content/themes/custom/js/css/uniform.default.css

你忘了http://.

将您的链接更改为:
<link rel="stylesheet" href="http://www.mcfaddengavender.net/newmg/wp-content/themes/custom/js/css/uniform.default.css" type="text/css" media="screen" charset="utf-8">

于 2012-12-07T01:09:20.567 回答