我在ColdFusion 11中编写了一个弹出窗口,并希望从我的localhost中的.cfm文件中弹出内容。
<cfajaximport tags="cfwindow">
<cfform name="test">
<cfinput type="button" name="x" value="S"
onClick="ColdFusion.Window.create('Window1', 'Member Listing -- Webpage Dialog','http://localhost/My_stuff/hello1.cfm',{x:100,y:100,height:300,width:300,modal:false,closable:true,draggable:true,resizable:true,center:true,initshow:true,
minheight:200,minwidth:200 })">
</cfform>
但是当我运行代码时,它不会在弹出窗口中显示任何内容。我从ColdFusion.Window.create documenation了解了弹出窗口。
如果我错过了什么,请帮助我。