问题描述
- 手机浏览器使用html5 input的multiple属性,怎么不能实现多选
-
手机浏览器使用html5 input的multiple属性,怎么不能实现多选
解决方案
问题描述的不具体,有没有其他的错误,请检查一下代码是不是有误。具体可参考:http://www.w3school.com.cn/tags/att_input_multiple.asp
解决方案二:
你是指上传文件么?这段代码我在手机上测试过,没问题啊。
<!DOCTYPE HTML>
选择图片:
请尝试在浏览文件时选取一个以上的文件。
解决方案三:
http://www.w3school.com.cn/tiy/t.asp?f=html5_input_multiple
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/demo_form.asp" method="get">
选择图片:<input type="file" name="img" multiple="multiple" />
<input type="submit" />
</form>
<p>请尝试在浏览文件时选取一个以上的文件。</p>
</body>
</html>
时间: 2025-01-31 14:11:13