有人请解释为什么这个
$('#errmsgDiv')
.html("<br/><p>"+msg+"</p><br/>")
.css("background-color","pink")
.popup('open', {positionTo: $(errInput)});
或者
$('#errmsgDiv')
.html("<br/><p>"+msg+"</p><br/>")
.popup('open', {positionTo: $(errInput)})
.css("background-color","pink");
我的弹出窗口不是粉红色的背景吗?
我用
启动弹出窗口$('#errmsgDiv').popup();
我的div看起来像这样:
<div id="errmsgDiv" data-role="popup"><p>msg text</p></div>