0

为什么相同的动作在变成函数时会停止工作?有什么一般规则吗?这是这个问题的一个非常具体和明确的例子。

jQuery 移动,http://jsbin.com/osovoh/2/edit

在这个版本中,js 运行良好。单选按钮的标签会立即更改。

var radio_elem = $('#edit-new-amount-no-cost');
$("label[for='edit-new-amount-no-cost']").html(radio_elem).append("label changed");

但是如果您删除 /* s 从而将相同的操作转换为由另一个按钮触发的功能,

function go() {
    var radio_elem = $('#edit-new-amount-no-cost');
    $("label[for='edit-new-amount-no-cost']").html(radio_elem).append("label changed");
}

相同的代码会混淆目的地的格式。怎么了?

4

2 回答 2

0

这是答案:

 <!DOCTYPE html>
<html>
<head>
  <meta name="description" content="WORKING: replace text in radiobutton" />
<meta charset=utf-8 />
<title></title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>

<body style="text-align:center">
<div class="form-radios">
  <div class="form-item" id="edit-new-amount-no-cost-wrapper">
    <label class="option" for="edit-new-amount-no-cost" >
    <input type="radio" id="edit-new-amount-no-cost" name="new_amount" value="no_cost" class="form-radio"/>
    original label
    </label>
  </div>
    </div>
<input name="click to change the label" type="button" onClick="go()">
<script> 

function go(){



$("label[for='edit-new-amount-no-cost'] .ui-btn-text").html("label changed");


}

 </script>



  </body>

</html>
于 2013-02-15T23:47:57.407 回答
0

如果它在函数内部,则标记更改发生在 jQuery Mobile 呈现页面之后。您必须让 jQuery Mobile 重新呈现您正在修改的页面或元素。

于 2013-02-15T19:23:24.927 回答