4

我允许我的用户导入本地和远程文件,但是如何使用单个输入来处理这两种情况?

像 Stackoverflow 一样,我可以使用 tabs 来做到这一点:

在此处输入图像描述

或使用单选按钮,如:

<style>
    .displayNone {
        display:none;
    }
</style>

<form action="test.php">
    File type:
    <input id="radio-url" name="type" type="radio" checked value="url" /> URL
    <input id="radio-file" name="type" type="radio" value="file" /> File
    <div id="url">
        <input name="url" type="text" />
    </div>
    <div id="file" class="displayNone">
        <input name="file" type="file" />
    </div>
    <input type="submit" value="Send" />
</form>

<script type="text/javascript">
        $('#radio-url').click(function() {
            $('#url').removeClass('displayNone');
            $('#file').addClass('displayNone');
        });
        $('#radio-file').click(function() {
            $('#file').removeClass('displayNone');
            $('#url').addClass('displayNone');
        });
</script>

给出一个可切换的:

在此处输入图像描述

但是我怎样才能创建这样一个字段:

在此处输入图像描述

请注意,在远程主机上处理文件的方式并不重要。

4

1 回答 1

3

我找到了一种使用 CSS 的工作方式:

<style>
    .container {
        position: relative;
    }
    .url {
        position: absolute;
        top:0;
        left:0;
        z-index:2;
    }
</style>

<form action="test.php">
    File or URL :
    <div class="container">
        <input name="file" type="file" />
        <input class="url" name="url" type="text" />
    </div>
    <input type="submit" value="Send" />
</form>

在 上面给出一个可编辑input type="text"input type="file"

在此处输入图像描述

但我认为这会很棘手,因为input type="file".

于 2012-12-17T11:45:24.273 回答