渴求!!!
我在两页上有两个脚本
1)对于DropDown List
2)对于POPUP消息
它们独立工作没有任何问题,但是一个脚本会阻止其他任何地方在我包含它的地方正常运行。
添加新
修改
删除
当我单击修改或删除执行POP消息时,POP消息将成功执行,取消或保存时更改我想要的POP消息后返回到页面下拉列表停止运行时,它不是删除上面的列表。
对于下拉列表我使用此JavaScript
$(function () {
$('.dropdown1').mouseenter(function () {
$('.sublinks1').stop(false, true).hide();
var submenu = $(this).parent().next();
submenu.css({
position: 'absolute',
top: $(this).offset().top + $(this).height() + 'px',
left: $(this).offset().left + 'px',
zIndex: 1000
});
submenu.stop().slideDown(300);
submenu.mouseleave(function () {
$(this).slideUp(300);
});
});
});
对于我使用的POP消息
<script type="text/javascript">
function ClearFields() {
};
function CloseModal(msg) {
$('#myModal').modal('hide');
if (msg.length > 0) {
alert(msg);
}
}
function ShowModal() {
$('#myModal').modal('show');
}
</script>
在页面上引用
<link href="../StyleSheet/DropDownMenu.css" rel="stylesheet" type="text/css" />
<script src="../JsQuery/1.10.2jquery.min.js" type="text/javascript"></script>
<script src="../JsQuery/jquery.js" type="text/javascript"></script>
<script src="../JsQuery/jquery-1.3.2.js" type="text/javascript"></script>
对于留言箱
<link href="../MessageBox/BootStrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
另外 还
注意:实际上是ascx中使用的整个代码或HTML