gpt4 book ai didi

jquery - 无法在 jquery mobile 中设置选择标签的值

转载 作者:行者123 更新时间:2023-12-01 07:30:25 26 4
gpt4 key购买 nike

我在 html(SelectTest.html) 中创建了一个带有一些值的选择标签。我想做的是从选择标签中选择任何值后,我需要刷新页面并将所选选项作为参数传递到网址。

然后我需要在页面刷新后将其设置为选定值。我不确定这个问题是否与 jQuery mobile 有关。

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){

var param = window.location.search;

if(param)
{


var indx = param.indexOf("=");

//now get the value of selected type

aval =param.substring(indx+1);

$("#lang").val(aval);
}

$("#lang").change(function(){

var sel = $(this).val();


window.location.href="SelectTest.html?type="+sel;

});

});



</script>
<title>Insert title here</title>
</head>
<body>
<div data-role="page" id="home" data-theme="e">
<div data-role="header">
<h1>Test</h1>
</div>
<div data-role="content" id="toi">

<div>
<label for="lang">Select Language</label>
<select name="language" id="lang">
<option value="en">English</option>
<option value="hi">Hindi</option>
<option value="sp">Spanish</option>
<option value="fr">French</option>
</select>
</div>



<div id="main">

</div>
</div>
</div>
<div data-role="footer">
<h4>Test</h4>
</div>
</div>
</body>
</html>

最佳答案

来自 jquery 移动文档:

If you manipulate a select via JavaScript, you must call the refresh method on it to update the visual styling. Here is an example:

var myselect = $("select#foo");
myselect[0].selectedIndex = 3;
myselect.selectmenu("refresh");

所以基本上你只需要调用刷新就可以了。这有帮助吗?

对于您的代码,您可以像这样链接它

$('#lang').val(aval).selectmenu("refresh");

关于jquery - 无法在 jquery mobile 中设置选择标签的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6628493/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com