我需要能够根据屏幕分辨率用另一个 php 文件替换一个 php 文件。这是我到目前为止所拥有的:
<script type="text/javascript">
function adjustStyle(width) {
width = parseInt(width);
if (width = 1920) {
$('book.php').replaceWith('book2.php');
}
}
$(function() {
adjustStyle($(this).width());
$(window).resize(function() {
adjustStyle($(this).width());
});
});
</script>
这显然是行不通的——有什么想法吗?提前感谢您收到的任何帮助。
更新
这完全接近(替换 book.php 行)吗?
{ $("a[href*='book.php']").replaceWith('href', 'book2.php'); };
第二次更新以反映此处收集的输入
function adjustStyle(width) {
width = parseInt(width);
if (width == 1920) {
$('#bookinfo').replaceWith(['book2.php']);
$.ajax({
url: "book2.php",
}).success(function ( data ) {
$('#bookinfo').replaceWith(data);
});
$(function() {
adjustStyle($(this).width());
$(window).resize(function() {
adjustStyle($(this).width());
});
});
}
}