<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) 请帮忙
多谢 !
托尼