As shown in figure:
The right border of the above picture is missing, debugging with the Web development tool and discovering that the inner container is too large. Then thought of is jquery-easyui to the interface "render" incorrect cause.
It was originally thought to be caused by the addition of repetitive code, but it was always removed:
In view of the interface "rendering" before and after the relationship, and then try to delay the execution of code fragments, problem solving.
original problem script:
Copy Code code as follows:
<script type= "Text/javascript" >
if (Window.__yltlclientscriptregistkey = = Undefined | |
Window.__yltlclientscriptregistkey!= ' Somekey ') {
Window.__yltlclientscriptregistkey = ' Somekey ';
$.messager.alert (' info ', ' hoo ', ' info ');
}
</script>
Script generated after processing:
Copy Code code as follows:
<script type= "Text/javascript" >
if (Window.__yltlclientscriptregistkey = = Undefined | |
Window.__yltlclientscriptregistkey!= ' Somekey ') {
Window.__yltlclientscriptregistkey = ' Somekey ';
SetTimeout (' alertwarning to me ~ ~ ') ', 100;
}
</script>
A thought, laughed out.