2016-03-31 58 views
1

我試圖打開包含產品圖像和信息的引導程序模式窗口。我的問題似乎是數據目標中的#uoc-modal。有些人可以告訴我如何正確地輸入回聲裏面的data-taget ID嗎?如何在php中正確輸入數據目標ID echo

echo '<a "data-toggle='modal'", "data-target='#uoc-modal'" href="' . get_the_permalink() . '">';

回答

0

從你的問題代碼,你應該逃避它

echo '<a "data-toggle=\'modal\'", "data-target=\'#uoc-modal\'" href="\' . get_the_permalink() . \'">'; 

但是,我認爲這應該工作

echo '<a data-toggle="modal" data-target="#uoc-modal" href="'.get_the_permalink().'">Modal</a>'; 

但無論如何,您不需要元素的data-target屬性。改爲使用href

+1

謝謝,我在我原來的代碼中有一個額外的逗號使它無法工作。逃跑沒有奏效,它無法獲得永久鏈接 –

0

試試這個代碼:

echo '<a "data-toggle=\'modal\'", "data-target=\'#uoc-modal\'" href="\' . get_the_permalink() . \'">'; 

晚上好