我有一個HTML阿克爾標籤象下面這樣:單引號
echo '<a href="javascript:tempBuy('.$res_get_price[0][0].','.$res_get_price[0][1].','.$res_get_price[0][2].','.$dt_str.')">'.$res_get_price[0][0];
和相應的JavaScript函數tempBuy()是
function tempBuy(rate,veg_name,market_name,dt)
{
alert(dt);
}
但問題是,它根本不提醒所有!可能是我需要在tempBuy()
函數中的單引號中包含變量名稱。我試過tempBuy(\'var1'\,\'var2\'...)
但它顯示錯誤。我怎麼能夠做到這一點。謝謝 。
來源的一部分這樣表示:
<td width="120px" class=""><a href="javascript:tempBuy(56.0,Apple,Bangalore,2013-05-18)">56.0</a>
</td>
<script>
function tempBuy(rate,veg_name,market_name,dt)
{
alert(rate);
}
</script>
你檢查生成的JavaScript?這會告訴你,如果報價是正確的。 –
不可以。我如何檢查? thnx – Nitish
通過查看您的頁面的來源。你會看到你缺少一些引號。 –