我希望两个 jquery 翻转开关在一行中,当屏幕太窄时,其中一个不可见。
为了让他们得到不同的对待,他们需要被分配不同的类别,但这不知何故不起作用。当 class 或 id 分配给 ap 或 div 时,条件有效,但这些元素不会出现在一行中。
如何在将它们保持在同一行的同时分配给他们一些课程?
最有效的是使用一排两列的表格。
而这里也是通过css来做同样的事情,据说比js更适合对象定位。实际上,只要您更改实时模式的分辨率,dreamweaver 就会立即响应此版本。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script><script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.2.0/jquery.mobile-1.2.0.min.js"> </script>
<style>
@media screen and (min-width:1px) and (max-width:319px) {
.bigga {
display: none;
}
}
div.ui-slider-switch {
width: 7em
}
</style>
</head>
<body>
<table width="200" border="0">
<tr>
<td><div align="center" class="bigga">
<select data-role="slider" >
<option value="off">boy</option>
<option value="on"> girl</option>
</select>
</div></td>
<td><div align="center">
<form >
<select data-role="slider" >
<option value="off" accesskey="" >man</option>
<option value="on" > woman</option>
</select>
</form>
</div></td>
</tr>
</table>
</body>
</html>