在htm php页面中打印Javascript函数

时间:2015-03-17 02:38:30

标签: javascript php html

这是我的javascript代码:

<script>
    $(function() {
        $('#input').validateCreditCard(function(result) {
            $('.log').html('Card type: ' + (result.card_type == null ? '-' : result.card_type.name)
                     + '<br>Valid: ' + result.valid
                     + '<br>Length valid: ' + result.length_valid
                     + '<br>Luhn valid: ' + result.luhn_valid);
        });
    });
</script>

我在html标签中打印结果值,如:

<h1><script>document.write(result.card_type.name())</script></h1>



<h1><script>document.write(result.valid())</script></h1>



<h1><script>document.write(result.length_valid())</script></h1>



<h1><script>document.write(result.luhn_valid())</script></h1>

它没有显示价值.. !!

1 个答案:

答案 0 :(得分:0)

“result”变量是该函数的本地变量。你不能在文档中使用它。

删除HTML中的这4行,只需添加以下内容:

<h1 class="log"></h1>

你得到了预期的结果吗?如果不是,你需要更好地解释“validateCreditCard”是什么。