谁知道将其连接到HTML表单???

不是NewForm.aspx和HTML表单?

<script type="text/javascript">
    $(document).ready(function() {
        $("#State").SPServices.SPCascadeDropdowns({
            relationshipList             : "SOGP",
            relationshipListParentColumn : "Title",
            relationshipListChildColumn  : "LC",
            parentColumn                 : "Title",
            childColumn                  : "LC"
        });
    });
</script>
<select id='State' listFieldName='Title' class='formInput'></select>

最佳答案

SPServices的SPCascadeDropdowns未设置为可与任何旧的任意HTML一起使用。它应与默认列表形式一起使用。

(您已经在SPServices讨论here中获得了此答案。)

09-25 16:06