我有從MySQL數據庫拉動產品的動態列表。在列表中有一個現在聯繫按鈕,我正在使用jQuery的Modal腳本彈出與窗體。Javascript變量,發送到PHP變量
我的問題是試圖將產品信息傳遞變量是彈出窗口。
我想用相對 attribue這樣加入品牌和型號名稱:
<a href="#" class="contact_now" rel="<?=$sku_brandname;?> <?=$sku_modelname;?>">Contact Now!</a>
,然後使用Javascript我可以這樣做:
$(".contact_now").click(function(){
var rel = $(this).attr('rel');
alert(rel);
其中工程完美,但在我的Popup Div我不知道如何讓這個JavaScript的rel變量輸出它。
<p>Fill out the form below to inquire about the <strong>{ rel value here }</strong>. We will get back to you as soon as possible.</p>
我不知道該怎麼做。如果任何人有任何想法或建議,我將不勝感激。
謝謝!
該模式插件,你呢? –
我用這個:http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/ – Drew
所以你要像'$(「#popupContact強「).text(rel)' –