ColdFusion检查是否加载了jQuery

时间:2010-08-16 03:22:27

标签: jquery coldfusion

我创建了这个简单的脚本来检查是否加载了jQuery

<cfoutput>
<cfif GetPageContext().getCFOutput().getBuffer().findStringNoCase("jquery.js") eq -1>
    <script type="text/javascript" src="jquery.js"></script>
</cfif>

<script>
    $(document).ready( function() {
        $("##theValue").val("the replacement");
    });
</script>

<input type="Text" name="theValue" id="theValue" value="the value">
</cfoutput>

整个页面都被cfoutput

包围

有没有更好的解决方案?

1 个答案:

答案 0 :(得分:1)

Eapen的评论是最好的答案。

“我同意Ken Redler - 只是使用这种方法 - coldfusioning.com/index.cfm/2010/7/9/...即if(typeof jQuery ==='undefined')document.write(”“); “ - eapen