LoginSignup
4
4

More than 5 years have passed since last update.

css反映されない

Last updated at Posted at 2013-09-11
<!doctype html>
<html lang="ja">
<head>
<meta http-equiv="content-Type" content="text/html; charset=utf-8">
<meta http-equiv="content-script-type" content="text/javascript">
<meta http-equiv="content-style-type" content="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0" />
<meta name="format-detection" content="telephone=no" />

<title>Search</title>
</head>
<link href="/******/*****.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="/js/jquery-1.10.2.min.js"></script>
<script src="/js/csv2table-0.02-b-4.3.1.js" type="text/javascript" charset="utf-8">
</script>
<script type="text/javascript">
    $(document).ready( function() {
        $("input:button").click(function(){
            var csv = 'http://*****/*****/****.csv';
            var word = 'like %' + $('#key').val() + '%';
            var param = { select : [0,1,2,3,4,5], where : [{'コード':word},'||',{'商品名':word}]};
            $('#view0').csv2table( csv, param );
        });
    });
</script>
</head>
<body>
<h3>Search</h3>
<input id="key" type="text" />
<br />
<input type="button" value="検索" />
<div id="view0"></div>
</body>
</html>

上記ソースを書きましたが外部にcssを抜き出すも、検索後表示される表がcssを反映しておりません。
ご教授願います。

4
4
61

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4