2
 <script>
                $("select").change(function () {
  var str = "";
  var price = <?php echo $row[price];?>;
  $("select option:selected").each(function () {
            str += $(this).text() + " ";
  });
  $(".plan_price").text("price : " + parseInt(str)*price + " baht");
})
.change();
    </script>

所以我在这里得到了这个 .each 和 .change 函数,我想从整个函数中返回 str 的值,以便我可以在代码的其他地方使用 str 变量值

我遇到的问题是当我在我的代码中的其他地方调用它时将返回和函数的名称放在哪里,比如 document.write(nameOfFunction) 请帮忙

多谢 !

托尼

4

1 回答 1

1

在这种情况下,我认为唯一的解决方案是使用全局变量来存储值

var myString;
$("select").change(function() {
    var str = "";
    var price = <?php echo $row[price];?>;
    $("select option:selected").each(function() {
                str += $(this).text() + " ";
            });
    $(".plan_price").text("price : " + parseInt(str) * price + " baht");
    myString = str;
}).change();
alert(myString)
于 2013-04-02T06:48:54.937 回答