有人能告诉我如何增加jQuery Mobile滑块输入区域的宽度,而不会抛弃控件的其余元素。输入区域是剪切大数字。
<!DOCTYPE html>
<html>
<head>
<link href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<section id="page1" data-role="page">
<header data-role="header" data-theme="a" data-position="fixed">
</header> <div data-role="fieldcontain" id="trDesiredAnnuityPayment">
<label id="PremiumText" for="txtDesiredAnnuityPayment">Desired Payment</label>
<input type="range" id="txtDesiredAnnuityPayment" name="txtDesiredAnnuityPayment"
step="1000" value="2088880" min="1000" max="5000000">
</div> </section>
</body>
</html>
答案 0 :(得分:0)
#txtDesiredAnnuityPayment{
width:auto;
}
在谷歌浏览器中测试过。