The right border of is missing. After debugging using the web development tool, it is found that the internal container is too large, so it is caused by incorrect "rendering" of the interface by jquery-easyui.
At first, I thought it was because the processing was repeated.CodeCause, but after removal, it is always:
Considering the frontend and backend relationship of "rendering" on the interface, we tried to delay the execution of code fragments and solve the problem.
Original problem script:
Copy code The Code is as follows: <SCRIPT type = "text/JavaScript">
If (window. _ yltlclientscriptregistkey = undefined |
Window. _ yltlclientscriptregistkey! = 'Somekey '){
Window. _ yltlclientscriptregistkey = 'somekey ';
$. Messager. Alert ('info', 'day', 'info ');
}
</SCRIPT>
Script generated after processing:
Copy code The Code is as follows: <SCRIPT type = "text/JavaScript">
If (window. _ yltlclientscriptregistkey = undefined |
Window. _ yltlclientscriptregistkey! = 'Somekey '){
Window. _ yltlclientscriptregistkey = 'somekey ';
SetTimeout ("alertwarning ('Please be careful ~~ ') ", 100 );
}
</SCRIPT>
An idea.