尝试在另一种方法中调用控制组的 .click() 方法。继承人我到目前为止:
$("#list").click(function() {
searchclick = true;
value = $("#listval").text().split(" - ");
window.location.href = "index.html";
item = $("#listval").attr("title");
if (item == "this") {
$("#this").click();
} else {
$("#that").click();
}
});
“#this”和“#that”是控制组中的两个按钮。控制组点击方法初始化如下:
$("#this, #that").click(function(){ ...code... }
有什么帮助吗?
编辑:这是 html 的样子:
<div data-role="content" class="ui-content" role="main">
<div id="item" data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>
</legend>
<input id="this" name="choose" value="val1" type="radio"/>
<label for="this">
val1
</label>
<input id="that" name="choose" value="val2" type="radio"/>
<label for="that">
val2
</label>
</fieldset>
</div>
...