我試圖從選擇標記中選取值並將其傳遞給jquery中的冷融合標記,如下所示。無法訪問腳本中的ColdFusion標記中的JavaScript變量
選擇標記代碼:
<select id="selectco">
<cfoutput query="colist">
<option value="#cid#">#coname#</option>
</cfoutput>
</select>
jQuery代碼:
$(document).ready(function()
{
$("#selectco").change(function()
{
var e=document.getElementById("selectco");
var opt=e.options[e.selectedIndex].value;
$("#selectst").html("<cfquery name='stlist' datasource='tasks'>
select * from state where cid='"+opt+"'
</cfquery><select id='selectct'><cfoutput query='stlist'><option>#stname#</option></cfoutput>");
});
});
我能夠採取價值選擇variable.But是無法通過價值cfquery標籤。請幫幫我。
[符號的可能重複:爲什麼PHP(或o服務器端)代碼在我的Javascript不工作?](http://stackoverflow.com/questions/13840429/reference-why-does-the-php-or-other-server-side-code-in-my-javascript -not-wor) – Quentin
@Quentin不,它不是重複的。你有可能取消你的近距離投票嗎?它只會鼓勵其他不瞭解ColdFusion方面的人同樣投票結束。 –