我有一个表单,如果我点击不同的选择菜单项,其下方会出现不同的消息框。如果我想将消息框数据调用到页面,我应该使用哪个代码?我正在使用wordpress网站。
这是我用于表单的jquery代码
$("#state2").click(function(){
var val = $(this).val();
if(val=="TASSUB"){
$("#location").html('<div class="add_info"><p><strong>Venue:</strong> Henry Jones Art Hotel </p><p style=" add_info-indent: 3.5em;"> 5 Hunter St, Hobart TAS 7000 </P><p><strong>Date: </strong> Monday 15 September</p><p><strong>Time: </strong> 3.00 – 5.00pm</p><p style=" add_info-indent: 3.5em;">(2.30pm arrival for registration and refreshments)</p></div>');
}
else if(val=="SASUB"){
$("#location").html('<div class="add_info"><p><strong>Venue:</strong> Hilton Adelaide </p><p style=" add_info-indent: 3.5em;"> 233 Victoria Square, Adelaide SA 5000 </P><p><strong>Date: </strong> Tuesday 16 September</p><p><strong>Time: </strong> 3.00 – 5.00pm</p><p style=" add_info-indent: 3.5em;">(2.30pm arrival for registration and refreshments)</p></div>');
}
});